解决 Maven package 命令报错程序包 sun.* 不存在
系统:Win10 JDK:1.8.0_333 IDEA:2020.3.4
1.问题描述
在一次打包 maven 项目的时候,出现了如下图的报错,运行时却是正常的
2.问题分析
这里很明显的可以看到,它是说 程序包 sun.swing.table 不存在 ,而这里的这个类就是存在于 rt.jar 包里的,那么 maven 在打包时为什么不能识别到 rt.jar 呢? 其实也不是所有的 rt.jar,这里出问题的是 sun 包下的类,编写依赖 sun.* 的 java 程序是有风险的:这些类是不可移植的,并且不受支持。事实上,即使在同一平台上的未来版本中,也不能保证这样的程序可以正常工作。
3.问题解决
3.1 方案一:修改代码(推荐)
尽量不要引入 sun 包下的 java 程序,修改源代码,这里后面再去尝试
3.2 方案二:修改 pom 文件
通过修改 pom 文件的方式,添加一个插件来打包,这里我使用的 jdk 是 1.8,maven 是 3.6.3
<?xml version="1.0" encoding="UTF-8"?>
<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>org.beautyeye</groupId>
<artifactId>beautyeye</artifactId>
<version>3.8</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
</compilerArgs>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
</project>
最后可以看到,将 pom 文件修改刷新后,重新打包就成功了
|