Spring Boot 3.x.x Compilation Breaks SOAP Marshalling of WSDL Generated POJOs
matthenry87 opened this issue · 1 comments
matthenry87 commented
Spring Boot 3 Eliminates WSDL Generated package-info.class from compiled classes, which is where it sources the SOAP namespace information for the JaxBContext.
To fix, I turned off the incremental compilation on spring-boot-maven-plugin and this allowed the package-info.class to stick around, fixing the issue.
gregturn commented
Can you share some more details like your build file?