JAVA 9 compatiblity
See original GitHub issueIt would be nice if wiremock would be java 9 compatible. I ran jdeps on our project https://github.com/JabRef/jabref/issues/2594#issuecomment-331638433 and got and it complained/showed the following: From what I found, this api is now encapsulated in java 9 (https://docs.oracle.com/javase/9/docs/api/java.xml-summary.html)
wiremock-2.8.0.jar -> java.xml
com.github.tomakehurst.wiremock.matching.EqualToXmlPattern$SkipResolvingEntitiesDocumentBuilderFactory -> com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl JDK internal API (java.xml)
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:12 (3 by maintainers)
Top Results From Across the Web
Java Platform, Standard Edition Oracle JDK 9 Migration Guide
You may encounter some source compatibility issues when recompiling. The JDK 9 Release Notes contains details of changes to the javac compiler and...
Read more >6 Compatibility challenges when moving to Java 9
In this chapter and in chapter 7, I discuss the compatibility challenges when migrating an existing code base to Java 9 and beyond....
Read more >Java 9: New Features and Compatibility of JDK 9 - Azul Systems
Java 9 brings many new features, but also pitfalls in compatibility that can cause issues. Read through the updates to JDK 9 and...
Read more >Java 9+ modularity: The difficulties and pitfalls of migrating ...
By looking at compatibility, migration issues, and techniques, explore the new APIs and tools, changes, deletions, and deprecations in Java ...
Read more >Java 9 Migration Issues and Resolutions - Baeldung
Normally, Java versions guarantee backward compatibility, but the JPMS changes some of this. 3. Execution in Java 9.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For those using the standalone JAR with Java 9 you need to add
--add-modules java.xml.bind
to make it run. ie.Otherwise you will get the following
I’ve been meaning to refactor this code in pretty much exactly the way you’ve suggested, so I’d be very happy to merge a PR.