Spring Boot :3.0.0-SNAPSHOT this is a soap webservice application org.springframework.boot spring-boot-starter-web-services wsdl4j wsdl4j

    <dependency>
        <groupId>org.apache.ws.xmlschema</groupId>
        <artifactId>xmlschema-core</artifactId>
        <version>${xmlschema.version}</version>
        <scope>runtime</scope>
    </dependency>

problem: when i use "mvn -Pnative clean native:compile" To create the executable, it run fine,but when i get the wsdl file,it throw err "java.lang.ClassNotFoundException: org.springframework.ws.soap.saaj.SaajSoapMessageFactory", SpringBoot websercice soap i use soapUI test the endpoint ,it throw error "Could not initialize WebServiceMessageReceiverHandlerAdapter" SpringBoot websercice soap

Comment From: bclozel

I don't think Spring WS supports AOT and GraalVM Native at the moment. Please create an enhancement request on the project. I've added a section in our wiki about this.

Thanks!