程序包sun.security.tools.keytool不存在
问题
在项目中使用 jdk中 sun.security.tools.keytool包下面的类报错:
程序包sun.security.tools.keytool不存在
解决方案
- 在pom.xml中加入下面插件
<build>
<pluginManagement>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<fork>true</fork>
<compilerArgument>-XDignore.symbol.file</compilerArgument>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
- 在Libraries中加入jdk中lib里的
tools.jar
。
具体可参考:https://www.pianshen.com/article/1309655767/