32 lines
987 B
XML
32 lines
987 B
XML
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<parent>
|
||
|
<artifactId>common</artifactId>
|
||
|
<groupId>com.rax</groupId>
|
||
|
<version>3.7.3</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.rax</groupId>
|
||
|
<artifactId>common-datasource</artifactId>
|
||
|
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<description>动态切换数据源</description>
|
||
|
|
||
|
<dependencies>
|
||
|
<!--mybatis-->
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.servlet</groupId>
|
||
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|