在接入 Druid 依赖时报 can't resolve com.sun.tools.xxxx.jar 1.8.0

无法正常运行或者打包.

普遍的说法是 openJDK 没有 Druid 所需的相关 jar 包 . 相关Issue

解决办法是在依赖中手动添加

1
2
3
4
5
6
7
<dependency>  
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8.0</version>
<scope>system</scope>
<systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
</dependency>

参考链接

微酷

CSDN