gellaig
gellaig
Hi, have you found any solution to this? I came across the same problem when i upgraded spring boot from 2.2.4 to 2.6.4. I will post my solution if i...
In my case the solution was changing these lines in my dependencies: implementation("org.jvnet.jaxb2_commons:jaxb2-basics-runtime:1.11.1") wsdl2java("org.jvnet.jaxb2_commons:jaxb2-basics-runtime:0.11.0") wsdl2java("org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0") To these: implementation("com.sun.xml.bind:jaxb-impl:3.0.2") wsdl2java("com.sun.xml.bind:jaxb-impl:2.3.3") I use spring boot 2.6.3, java 11, kotlin 1.6.10, gradle 6+,...