程序包sun.security.tools.keytool不存在


問題

在項目中使用 jdk中 sun.security.tools.keytool包下面的類報錯:程序包sun.security.tools.keytool不存在

解決方案

  1. 在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>
  1. 在Libraries中加入jdk中lib里的tools.jar
    具體可參考:https://www.pianshen.com/article/1309655767/

參考:https://www.it1352.com/1609984.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM