生成wsdl时出现Axis2错误

时间:2012-06-26 10:59:30

标签: wsdl jax-ws axis2

我正在尝试使用JAX-WS和JAXB注释开发新的Web服务。 当我在axis2中部署.jar并打开浏览器以检索生成的.wsdl时,我收到以下错误:

[ERROR] Error occurred generating WSDL file for Web service implementation class {foo.bar.myServiceImpl}
java.lang.NoClassDefFoundError: com/sun/xml/ws/api/server/Container
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
        at java.lang.Class.getMethod0(Unknown Source)
        at java.lang.Class.getMethod(Unknown Source)
        at org.apache.axis2.jaxws.description.builder.JAXWSRIWSDLGenerator.generateWsdl(JAXWSRIWSDLGenerator.java:179)
        at org.apache.axis2.jaxws.description.builder.JAXWSRIWSDLGenerator.initialize(JAXWSRIWSDLGenerator.java:390)
        at org.apache.axis2.jaxws.description.builder.JAXWSRIWSDLGenerator.getWSDL(JAXWSRIWSDLGenerator.java:383)
        at org.apache.axis2.description.AxisService.printWSDL(AxisService.java:1394)
        at org.apache.axis2.transport.http.HTTPWorker.service(HTTPWorker.java:154)
        at org.apache.axis2.transport.http.server.AxisHttpService.doService(AxisHttpService.java:281)
        at org.apache.axis2.transport.http.server.AxisHttpService.handleRequest(AxisHttpService.java:187)
        at org.apache.axis2.transport.http.server.HttpServiceProcessor.run(HttpServiceProcessor.java:82)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ClassNotFoundException: com.sun.xml.ws.api.server.Container
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 15 more

在源代码中,我注意到com.sun.xml.ws.api.server.Container是jaxws-rt实现的一部分,它不是Axis2发行版的一部分(在/中找不到它) lib /文件夹)。为什么是这样?我在这里错过了一点吗?

2 个答案:

答案 0 :(得分:2)

好的,明白了。 我会发布答案,以避免任何人将他(或她)的头撞到墙上。

我的系统上设置了一个旧的JAVA_HOME环境变量。这指向安装程序JRE,但它需要指向已安装的JDK。就是这样。

答案 1 :(得分:2)

我遇到了同样的问题。我需要向jaxws-maven-plugin添加依赖项。如果没有这些依赖关系,它会抛出同样的错误

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxws-maven-plugin</artifactId>
            <configuration>
                <wsdlDirectory>src/main/resources/wsdl/</wsdlDirectory>
                <keep>true</keep>
                <sourceDestDir>${project.build.directory}/generated-sources/wsimport</sourceDestDir>
                <sei></sei>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>com.sun.xml.ws</groupId>
                    <artifactId>jaxws-rt</artifactId>
                    <version>2.1.4</version>
                </dependency>
                <dependency>
                    <groupId>com.sun.xml.ws</groupId>
                    <artifactId>jaxws-tools</artifactId> 
                    <version>2.1.4</version>
                </dependency>
            </dependencies>
            <executions>
                <execution>
                    <id>generate-from-wsdl</id>
                    <goals>
                        <goal>wsimport</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>