From b0fcddf67506e4d525a2544310609fea88b34922 Mon Sep 17 00:00:00 2001 From: XiaoLFeng Date: Wed, 24 Jan 2024 15:59:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 - pom.xml | 18 ++++++++++++++++++ src/main/resources/application-test.yml | 22 ++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/application-test.yml diff --git a/.gitignore b/.gitignore index 453b430..feff169 100755 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,3 @@ build/ ### 自定义 ### *.pdf /src/main/resources/application-dev.yml -/src/main/resources/application-test.yml diff --git a/pom.xml b/pom.xml index 3f8d2df..fbf0657 100755 --- a/pom.xml +++ b/pom.xml @@ -151,4 +151,22 @@ + + + dev + + true + + + dev + + + + test + + test + + + + diff --git a/src/main/resources/application-test.yml b/src/main/resources/application-test.yml new file mode 100644 index 0000000..1250e76 --- /dev/null +++ b/src/main/resources/application-test.yml @@ -0,0 +1,22 @@ +spring: + datasource: + url: jdbc:mysql://localhost:3306 + username: organize_oa + password: Nbxt123456 + driver-class-name: com.mysql.cj.jdbc.Driver + redis: + database: 0 + host: localhost + port: 6379 + password: 123456 + mail: + default-encoding: UTF-8 + host: smtp.qiye.aliyun.com + username: wxxydeveloper@x-lf.cn + password: 114477225588Zcw + properties: + form: wxxydeveloper@x-lf.cn + mail-ssl: true +mybatis: + configuration: + map-underscore-to-camel-case: true \ No newline at end of file