解决项目中miss tools.jar的问题
<dependency>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
</dependency>
需要写绝对路径G:\\soft\\VirtualMachineRelated\\jdk1.8.0_45\\lib\\tools.jar
解决misstools.jar依赖问题
本文介绍了解决项目中misstools.jar依赖问题的方法,通过配置Maven依赖,将jdk.tools版本设置为1.8,并指定系统路径为jdk安装目录下的tools.jar,确保了项目正常运行。
1692

被折叠的 条评论
为什么被折叠?



