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>

本文介绍了如何在SpringBoot3.8.6的前端后端分离项目中,使用Maven插件将外部jar包(如达梦数据库DM8驱动)打包。详细步骤包括在pom.xml中配置SpringBootMaven插件以包含系统范围的依赖。
210

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



