1
mvn generate-sources
[INFO] Scanning for projects...
[INFO]
[INFO] Using the builder          org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBu
ilder with a thread count of 1
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building epay_api 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- jaxws-maven-plugin:2.3:wsimport (wsimport-generate-sources) @ api ---
[INFO] Processing: file:/C:/service.wsdl
[WARNING] Using platform encoding (Cp1256), build is platform dependent!
[INFO] jaxws:wsimport args: [-keep, -s, C:\api\src\main\java, -d, C:\api\target\classes,     -verbose, -Xnocompile, -B-debug, -B-no-header, -B-Xxew, -B-Xx
ew:instantiate lazy, -B-Xxew:delete, -B-extension, -B-b C:\api/src/main/res
ources/jaxb_binding.xml, "file:/C:/api/src/main/resources/service.w
sdl"]
[DEBUG] JAXB Compilation started (XmlElementWrapperPlugin.onActivated):
[DEBUG]   buildId         : 2.2.7
[DEBUG]   targetDir       : .
[DEBUG]   defaultPackage  : null
[DEBUG]   defaultPackage2 : null
[DEBUG]   debug           : true
[DEBUG]   verbose         : true
[DEBUG]   quiet           : false
[DEBUG]   grammars        : 0
[DEBUG] Argument[0] = -Xxew
[DEBUG] Argument[0] = -Xxew:instantiate
[DEBUG] Argument[0] = -Xxew:delete
parsing WSDL...


Exception in thread "main" java.lang.ClassCastException: java.lang.NoSuchMethodError     cannot be cast
to java.lang.Exception
        at org.jvnet.jax_ws_commons.jaxws.Invoker.main(Invoker.java:87)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.593 s
[INFO] Finished at: 2014-04-04T04:06:54+04:00
[INFO] Final Memory: 7M/216M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.jvnet.jax-ws-commons:jaxws-maven-plugin:2.3:wsimport     (wsimport-ge
nerate-sources) on project epay_api: Mojo failed - check output -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the     following arti
cles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

这是我的简单 pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>api</groupId>
<artifactId>api</artifactId>
<version>0.0.1-SNAPSHOT</version>

<build>

    <plugins>
        <plugin>
            <groupId>org.jvnet.jax-ws-commons</groupId>
            <artifactId>jaxws-maven-plugin</artifactId>
            <version>2.3</version>
            <executions>
                <execution>
                    <id>wsimport-generate-sources</id>
                    <goals>
                        <goal>wsimport</goal>
                    </goals>
                    <configuration>
                        <verbose>true</verbose>
                        <sourceDestDir>src/main/java</sourceDestDir>
                        <wsdlDirectory>src/main/resources/</wsdlDirectory>
                        <wsdlLocation>src/main/resources/*</wsdlLocation>
                        <xjcArgs>
                            <xjcArg>-debug</xjcArg>
                            <xjcArg>-no-header</xjcArg>

                            <xjcArg>-Xxew</xjcArg>
                            <xjcArg>-Xxew:instantiate lazy</xjcArg>
                            <xjcArg>-Xxew:delete</xjcArg>

                            <xjcArg>-extension</xjcArg>
                            <xjcArg>-b ${basedir}/src/main/resources/jaxb_binding.xml</xjcArg>
                            <xjcArg>-XJsr303Annotations</xjcArg>
                            <!-- <xjcArg>-Xfluent-api</xjcArg> -->
                            <!-- <xjcArg>-Xvalue-constructor</xjcArg> -->
                        </xjcArgs>

                    </configuration>


                </execution>

            </executions>
            <dependencies> 
                <dependency>
                    <groupId>com.github.jaxb-xew-plugin</groupId>
                    <artifactId>jaxb-xew-plugin</artifactId>
                    <version>1.2</version>
                </dependency>

                <dependency>
                    <groupId>com.github.krasa</groupId>
                    <artifactId>krasa-jaxb-tools</artifactId>
                    <version>1.1</version>
                </dependency>
            </dependencies>
        </plugin>

    </plugins>

</build>

并且 -e -X 开关不会显示有关此错误的任何信息

"main" java.lang.ClassCastException: java.lang.NoSuchMethodError 不能在 .jax_ws_commons.jaxws.Invoker.main(Invoker.java:87) 上强制转换

这是我正在尝试的最基本的配置。

C:\api>java -version java version "1.7.0_51" Java(TM) SE Runtime Environment (build 1.7.0_51-b13) Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, 混合模式)

C:\api>mvn -version Apache Maven 3.2.1 (ea8b2b07643dbb1b84b6d16e1f08391b666bc1e9; 2014-02-14T21:37:52+04:00) Maven 主页:C:\Program Files\apache-maven-3.2.1\bin.. Java 版本:1.7.0_51,供应商:Oracle Corporation Java 主页:C:\Program Files\Java\jdk1.7.0_51\jre 默认语言环境:en_US,平台编码:Cp1256 操作系统名称:“windows 7”,版本:“6.1” ,拱门:“amd64”,家庭:“windows”

我的配置有什么问题?感谢任何帮助谢谢

4

5 回答 5

5

https://java.net/jira/browse/JAX_WS_COMMONS-129的解决方法帮助了我:

    <configuration>
         <vmArgs>
            <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
         </vmArgs>
    </configuration>
于 2015-09-22T21:07:48.180 回答
2

根据jaxb xew 插件的示例,您需要使用更新版本的jaxws maven 插件。该示例使用版本 2.3.1-b03,它也在我的项目中运行。该插件的旧版本可能是针对与jaxb xew 插件不兼容的库编译的。

如果您浏览示例代码历史记录,您也会发现 jaxws maven 插件版本 2.2 的配置。

于 2014-05-15T11:01:29.720 回答
2

对于它的价值:我遇到了同样的错误 - 使用 Maven 3.2.2 并且我将 jaxws-maven-plugin 设置为 2.3。这停止了​​解决问题:

线程“主”java.lang.ClassCastException 中的异常:java.lang.NoSuchMethodError 无法转换为 java.lang.Exception

阅读线程和 Stack Overflow 帖子,似乎使用新版本的插件会有所帮助。一直移动到 2.3.1-b01 到 2.3.1-b03。这将问题更改为现在导致:

java.lang.NoClassDefFoundError: org/sonatype/aether/* 引起:java.lang.ClassNotFoundException: org.sonatype.aether.*

似乎 2.3.1-b03 与 >=3.1 的任何 Maven 版本一起工作时存在一个有据可查的问题。您可以通过搜索找到更多信息(上面有 JIRA 和错误报告)或从这里开始。

最终我又回到了 2.2。对于插件,这没有问题。

于 2014-08-17T15:53:56.097 回答
1

尝试在你的 pom.xml 中添加这个插件

<plugin>
    <groupId>org.jvnet.jax-ws-commons</groupId>
    <artifactId>jaxws-maven-plugin</artifactId>
    <version>2.3</version>
    <configuration>
        <!-- Needed with JAXP 1.5 -->
        <vmArgs>
            <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
        </vmArgs>
    </configuration>
</plugin>
于 2017-01-18T13:51:56.887 回答
0

我得到了同样的错误:

未能在项目 birst-soap-client 上执行目标 org.jvnet.jax-ws-commons:jaxws-maven-plugin:2.3:wsimport(默认):Mojo 失败 - 检查输出。

但原因在于詹金斯。Jenkins 作业名称中有一些空格(“file:/data/jenkins/workspace/Dpm-Flyer-Core%20-%20Release%20Tag+Nexus/...),这导致无法执行“jaxws: wsimport”。但奇怪的是,Jenkins 将其列为 [INFO] 而不是 [ERROR]。删除 Jenkins 作业名称中的空格后。构建成功执行。下面列出了摘录。

[INFO] [INFO] 处理:文件:/data/jenkins/workspace/Dpm-Flyer-Core%20-%20Release%20Tag+Nexus/thirdparty/birst-soap-client/src/main/resources/wsdl/CommandWebService。 5.19.wsdl [INFO] [WARNING] 使用平台编码 (UTF-8),构建依赖于平台![INFO] [INFO] jaxws:wsimport args: [-keep, -s, /data/jenkins/workspace/Dpm-Flyer-Core - Release Tag+Nexus/thirdparty/birst-soap-client/target/generated-sources/ wsimport,-d,/data/jenkins/workspace/Dpm-Flyer-Core - 发布标签+Nexus/thirdparty/birst-soap-client/target/classes,-verbose,-Xnocompile,-B-XautoNameResolution,-p,com .birst, -target, 2.0, "file:/data/jenkins/workspace/Dpm-Flyer-Core%20-%20Release%20Tag+Nexus/thirdparty/birst-soap-client/src/main/resources/wsdl/CommandWebService .5.19.wsdl"] [INFO] 目录未找到:/data/jenkins/workspace/Dpm-Flyer-Core

于 2015-11-10T15:03:46.713 回答