-2

我正在尝试构建一个 maven 项目,一个 OSGi 包,其中包含 Web 服务。我正在使用带有所有@WebService注释的 JAX-WS 来指定我拥有的 Web 服务。要在您通常使用的客户端位置加载这些 Web 服务,wsgenwsimport用于导出/导入 WSDL 文件。我打算使用jaxws-maven-plugin这样做,但问题是:

该捆绑包可以同时充当服务器和客户端。它可以将自己注册为同一捆绑包的父节点的客户端(在不同的 JVM/主机上运行)。因此,这个 maven 项目/捆绑包为 web 服务定义了一个接口,并定义了一个实现该接口的实现类。接口和类都@WebService照常使用注解。

@WebService
public interface Example {
    public void callMe();
}

@WebService
public class ExampleImpl implements Example {
    public void callMe() {};
}

然后在我的代码中的某个地方:

Endpoint p = Endpoint.publish(
                 "http://localhost:8080/example",
                 new ExampleImpl());    

jaxws : wsgen 目标读取注释并创建输出文件(.class 文件、.java 文件、WSDL 文件,具体取决于配置...)。但是如何在jaxws:wsimport目标期间使用这些文件进行相同的mvn package运行?在同一个maven项目中我想使用这个webservice,所以我需要写这样的东西:

ExampleImplService service = new ExampleImplService();
Example port = service.getExampleImplPort();
port.callMe();

jaxws:gen目标是在阶段运行,因为process-classes它需要读取已编译的类,但jaxws:import必须在generate-sources阶段运行以准备一切以进行编译。现在我遇到了一个鸡蛋问题。我需要编译的类通过生成输出文件wsgen,但我需要在maven阶段的wsgen输出wsimport文件generate-sources。我的第一次尝试是将jaxws:wsgen目标也分配给generate-sources阶段,但由于类丢失/尚未编译,它当然不起作用。

我有什么办法来解决这个问题?我是否应该在该阶段之前运行一个antrun目标来编译一些类(即只有带有@WebService注释的类)generate-sources以便jaxws:wsgen可以使用它(在那个阶段),创建输出文件,然后jaxws:wsimport在该generate-sources阶段使用?还有其他方法可以解决这个鸡蛋问题吗?在同一个 maven 项目中编译 web 服务的服务器和客户端部分是否还有其他“maven 方式”?它应该顺便说一句。从一个干净的mvn clean版本运行,所以我不想要/不喜欢任何解决方案,比如“运行mvn package两次以首先生成 web 服务文件,然后编译其他所有内容”。换句话说:mvn clean package应该编译整个 maven 项目/osgi 包。

4

1 回答 1

1

我已经设法通过将jaxsw:wsgen目标移到generate-sources阶段来解决这个问题。我使用以下步骤。

  1. 首先,我@WebService通过antrun执行编译带有注释的类,<javac>用于编译类。我将生成的 .class 文件保存在一个临时目录中,该目录在我创建客户端存根后被删除。
  2. 我从已编译的 .class 文件中创建 WSDL 文件jaxws:wsgen
  3. 从临时目录中,我创建具有正常jaxws:wsimport目标的客户端存根。
  4. antrun我通过第二次执行删除了临时目录。

生成的 pom.xml 文件如下所示(仅相关部分)

<properties>
    <tmpdirectory>${java.io.tmpdir}${file.separator}${user.name}-${project.groupId}-${project.artifactId}</tmpdirectory>
</properties>
...
        <plugin>
            <!-- clean tmp directory at every "mvn clean" -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-clean-plugin</artifactId>
            <version>2.4.1</version>
            <configuration>
                <filesets>
                    <fileset>
                        <directory>${tmpdirectory}</directory>
                    </fileset>
                </filesets>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.6</version>
            <dependencies>
                  <dependency>
                      <groupId>com.sun</groupId>
                      <artifactId>tools</artifactId>
                      <version>1.6.0</version>
                      <scope>system</scope>
                      <systemPath>${java.home}/../lib/tools.jar</systemPath>
                  </dependency>
            </dependencies>  
            <executions>
                <execution>
                    <!-- compile webservice classes into tmp directory -->
                    <id>mini compile of webservices</id>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <target>
                            <property name="compile_classpath" refid="maven.compile.classpath"/>
                            <mkdir dir="${tmpdirectory}" />
                            <javac includeAntRuntime="false"
                                   classpath="${compile_classpath}"
                                   destdir="${tmpdirectory}">
                                <src path="${project.build.sourceDirectory}" />
                                <include name="org/example/project/*/webservice/*.java" />
                            </javac>
                        </target>
                    </configuration>
                </execution>
                <execution>
                    <!-- delete temporary directory (in case mvn clean is not called) -->
                    <id>clean up tmp dir</id>
                    <phase>process-sources</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <target>
                            <delete dir="${tmpdirectory}" />
                        </target>
                    </configuration>
                </execution>
            </executions>  
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxws-maven-plugin</artifactId>
            <version>1.10</version>
            <executions>
                <execution>
                    <!-- generate WSDL file from the compiled classes in tmp directory -->
                    <id>generate wsdl file</id>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>wsgen</goal>
                    </goals>
                    <configuration>
                        <sei><!-- service endpoint implementation  --></sei>
                        <destDir>${tmpdirectory}</destDir>
                        <genWsdl>true</genWsdl>
                        <resourceDestDir>${tmpdirectory}</resourceDestDir>
                    </configuration>
                </execution>
                <execution>
                    <!-- create client stub files -->
                    <id>create client files from wsdl file</id>
                    <goals>
                        <goal>wsimport</goal>
                    </goals>
                    <configuration>
                        <keep>true</keep>
                        <wsdlDirectory>${tmpdirectory}</wsdlDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>
于 2011-02-18T20:14:42.917 回答