Maven:从jar中提取文件

时间:2011-04-05 22:54:20

标签: maven wsdl jax-ws

我正在开发一个WebService的客户端应用程序,我在jar中有相应的WSDL文件。

我正在使用ant从wsdl生成带有以下build.xml的java代码:

<project name="wsimport" default="wsimport" basedir=".">
<taskdef name="wsimport" classname="com.sun.tools.ws.ant.WsImport" />

  <target name="wsimport">
     <echo message="Starting wsimport"/>
     <mkdir dir="target/generated-sources/jaxws-wsimport"/>
     <wsimport
        wsdl="???"
        sourcedestdir="target/generated-sources/jaxws-wsimport"
        extension="true"
        verbose="true"
        target="2.0"
        xnocompile="true"
        catalog="src/jax-ws-catalog.xml"
        wsdlLocation="/MyWebService/MyWebServiceV1_0?wsdl">
        <binding dir="src/main/resources/bindings/v1_0" includes="*.xml"/>
        <xjcarg value="-XhashCode"/>
        <xjcarg value="-Xequals"/>
        <xjcarg value="-XtoString"/>
     </wsimport>

   </target>
</project>

如何从jar加载WSDL文件? WSDL引用了一个XSD,它也在同一个jar中。

1 个答案:

答案 0 :(得分:7)

回答我自己的问题,我使用的方法是从jar中提取文件。

实际上我使用maven构建项目和antrun插件来从wsdl生成源代码,所以我使用maven-dependency-plugin来解压缩jar中的文件:

            <!-- extract WSDL and XSD from dependency jar -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>unpack</id>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>unpack</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>my.company</groupId>
                                    <artifactId>my.artifact</artifactId>
                                    <version>1.0</version>
                                    <outputDirectory>${project.build.directory}/wsdl</outputDirectory>
                                    <includes>**\/*.xsd, **\/*.wsdl</includes>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>