【Maven】Maven打包失败,程序包com.sun.deploy.net不存在
程序员文章站
2024-02-10 20:10:40
...
1.问题
用Maven打包的时候,失败,程序包com.sun.deploy.net不存在;
2.代码
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project fxrj-admin: Compilation failure: Compilation failure:
[15,26] 程序包com.sun.deploy.net不存在
[93,31] 找不到符号
[ERROR] 符号: 变量 URLEncoder
[ERROR] -> [Help 1]
[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] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
3.方案
源文件跟换URLEncoder的jar包,使用URLEncoder(java.net)包;
4.第二个错误
接下来会报程序包com.sun.image.codec.jpeg不存在的错误
<!-- 编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<compilerArguments>
<verbose />
<bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
原作者:
maven下面编译失败,失败提示信息为:程序包com.sun.image.codec.jpeg不存在
这个类文件的位置在jre/lib/rt.jar
而我们设置的java_home下面的lib/dt.jar中没有这个文件,导致编译失败。通过配置maven-compiler-plugin插件可以解决此问题。
在windows下面用;分隔,linux下面用:分隔。
配置中使用了两个jar包,因为我在编译的过程中除了报上面那个错误,还报了一个错。所以我添加了两个包。
原帖子在这里:[这里]
上一篇: springboot集成jsp页面
推荐阅读
-
Maven打包 错误 程序包org junit不存在
-
【Maven】Maven打包失败,程序包com.sun.deploy.net不存在
-
IDEA maven项目报错:程序包com.sun.image.codec.jpeg不存在
-
Maven 打包 程序包com.sun.image.codec.jpeg不存在
-
springboot项目maven打包:程序包com.sun.image.codec.jpeg不存在
-
Spring-boot构建多模块依赖工程时,maven打包异常:程序包xxx不存在
-
Maven 编译打包报错:程序包org.junit不存在 Error:(3, 29) java: 程序包org.junit.jupiter.api不存在 IDEA
-
maven多项目打包报错---子模块相互依赖打包时所遇到的问题:依赖的程序包找不到 package xxx does not exist
-
Maven多模块项目打包前的一些注意事项(打包失败)
-
maven resources导致打包失败分析与解决