Posts tagged "Tomcat"
I upgraded to Java 9 - Part II
A few weeks ago, I wrote about migrating an existing Spring-application to Java 9. When I finished, two things remained to be investigated:
- Code coverage for unit tests.
- A bunch of warnings when running the application in Tomcat.
Code coverage for unit tests
As Alan Bateman pointed out, upgrading JaCoCo to its latest version should resolve the issue about the $jacocoData
field.
In fact, I thought I had done that, but somehow I kept on getting the same error every single time.
But when I tried (again) last week, it somehow disappeared.
No error to be seen, all tests green, and a nice coverage report from JaCoCo.
I’m a happy developer, again!
I upgraded to Java 9 - here's what happened
I recently participated in a Twitter conversation about upgrading to Java 9. Like most of the people, my current projects are all on Java 8. Of course the question came up, why don’t you upgrade? Good question! Since I hadn’t even tried, I decided to see how far I could come…
The component I took for my experiment is a pretty simple Spring application. It doesn’t use Spring Boot. It exposes a few REST endpoints, and calls couple of webservices over SOAP. For these webservices, it uses bindings generated by the JAXB plugin for Maven.
— Read more... →