添加数据库配置

This commit is contained in:
myh 2023-10-06 18:37:34 +08:00
parent be4a7ce1ec
commit 8a4e899218
2 changed files with 7 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,4 +1,6 @@
HELP.md HELP.md
src/main/resources/application.properties
target/ target/
!.mvn/wrapper/maven-wrapper.jar !.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/ !**/src/main/**/target/

View File

@ -43,6 +43,11 @@
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.4.0.jre11</version>
</dependency>
</dependencies> </dependencies>
<build> <build>