springboot 连接达梦数据库,配置双数据源
Posted GW_Cheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 连接达梦数据库,配置双数据源相关的知识,希望对你有一定的参考价值。
springboot数据源配置
在resources下建立lib目录,将达梦驱动放进去
pom引用
<dependency>
<groupId>com.dm</groupId>
<artifactId>DmJdbcDriver</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>$project.basedir/src/main/resources/lib/DmJdbcDriver18.jar</systemPath>
</dependency>
plugin配置(将达梦驱动打包)
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
不带模式访问参考
https://blog.csdn.net/frankcheng5143/article/details/108219862
双数据源配置参考
https://blog.csdn.net/LOYE_YOU/article/details/90722045
以上是关于springboot 连接达梦数据库,配置双数据源的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot 配置双数据源MySQL、SQL Server