我正在使用 spring-ws 和 XSD 自动生成我的 wsdl。现在我想生成 java 类来返回并进行编组。
然而,我看到了很多不同的方法来实现这一点,并不是所有人都清楚地了解好处\减损。
有些只是将生成的 WSDL 保存在他们的项目中,有些使用他们的 XSD 文件来生成,有些则添加 XJB 等......
我的第一个想法只是添加:
<plugin>
<groupId>com.sun.tools.xjc.maven2</groupId>
<artifactId>maven-jaxb-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<removeOldOutput>true</removeOldOutput>
<schemaDirectory>src/main/webapp/WEB-INF</schemaDirectory>
</configuration>
</plugin>
对我pom.xml