我正在使用maven插件从WSDL生成web服务。我希望这项服务能够接受&过程附件。我了解到webservice的服务接口应该有注释
@Consumes("multipart/form-data")
但是通过Maven生成的存根不包含此内容。我怎样才能实现它?有没有办法将其指定为插件或外部绑定文件的参数? 目前我的插件看起来如下(部分)
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<configuration>
<sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/answersheetService.wsdl</wsdl>
<extraargs>
<extraarg>-b</extraarg>
<extraarg>${basedir}/src/main/resources/wsdl/answersheet_binding.xml</extraarg>
<extraarg>-validate</extraarg>
<extraarg>-autoNameResolution</extraarg>
<extraarg>-client</extraarg>
</extraargs>
</wsdlOption>
答案 0 :(得分:0)
我也面临类似的问题。 cxf-codegen-plugin没有必要的代码容量,我使用maven-replacer-plugin。在我的例子中,我们使用包替换了全名的类名。
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<executions>
<execution>
<id>replace-fault-names</id>
<goals>
<goal>replace</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<file>
${basedir}/target/generated-sources/src/package/YourClass.java
</file>
<replacements>
<replacement>
<token>source-value</token>
<value>target-value</value>
</replacement>
</replacements>
</configuration>
</execution>
</executions>
</plugin>