关于生成 JAXB 对象的两个问题。
如两个示例中所示配置 Jaxb 时有什么区别。
使用 Maven
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/webapp/WEB-INF/schemas</schemaDirectory>
</configuration>
</plugin>
使用 Spring 配置文件
<bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
<property name="contextPath" value="org.springframework.ws.samples.mtom.schema"/>
<property name="mtomEnabled" value="true"/>
</bean>
上述两种配置是否实现了同样的事情?
第二个问题是如何使用 Maven 配置方法启用 MTOM?