码迷,mamicode.com
首页 > 编程语言 > 详细

Maven 打包时,提示 java: 程序包com.sun.xml.internal.ws.fault 不存在 和 javax.crypto 不存在

时间:2020-04-26 10:40:49      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:文件中   tar   style   and   jar   exp   XML   jre   class   

报错原因:

Maven 打包时,不会导入 JDK 内部的依赖( JDK 属于部署的环境,不属于外部的三方依赖;

解决办法:

在pom.xml 文件中,添加如下 plugin 插件;

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
        <compilerArguments>     <bootclasspath>${JAVA_HOME}/jre/lib/rt.jar;${JAVA_HOME}/jre/lib/jce.jar</bootclasspath>
        </compilerArguments>
    </configuration>
</plugin>

 

 

Maven 打包时,提示 java: 程序包com.sun.xml.internal.ws.fault 不存在 和 javax.crypto 不存在

标签:文件中   tar   style   and   jar   exp   XML   jre   class   

原文地址:https://www.cnblogs.com/damaoa/p/12777418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!