1、添加外部jar包
参考:若依@v3.8.6前后端分离版集成达梦数据库(DM8)
2、打包外部jar包
在根目录下 pom.xml 文件中,添加:
<!-- 打包外部jar -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>