Skip to content

Commit c773693

Browse files
author
danbai225
committed
.
1 parent 9403f6e commit c773693

File tree

5 files changed

+234
-67
lines changed

5 files changed

+234
-67
lines changed

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ target/
33
!.mvn/wrapper/maven-wrapper.jar
44
!**/src/main/**
55
!**/src/test/**
6-
#config
7-
**/jdbc.properties
86
# JRebel
97
rebel.xml
108
### STS ###
@@ -15,7 +13,8 @@ rebel.xml
1513
.settings
1614
.springBeans
1715
.sts4-cache
18-
16+
**/jdbc.properties
17+
**/application.yml
1918
### IntelliJ IDEA ###
2019
.idea
2120
*.iws
@@ -31,4 +30,4 @@ rebel.xml
3130
build/
3231

3332
### VS Code ###
34-
.vscode/
33+
.vscode/

.idea/workspace.xml

Lines changed: 47 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/resources/application.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ spring:
1212
date-format: yyyy-MM-dd HH:mm:ss
1313
data:
1414
mongodb:
15-
uri: mongodb://***:***@127.0.0.1:27017/dm
15+
uri: mongodb://danmu:[email protected]:27017/dm
1616
thymeleaf:
1717
cache: false
1818
mode: LEGACYHTML5
1919
datasource:
2020
druid:
21-
url: jdbc:mysql://***:3306/ys?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
22-
username: ****
23-
password: ****
21+
url: jdbc:mysql://39.108.110.44:3306/ys?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
22+
username: ys
23+
password: hjj225
2424
initial-size: 1
2525
min-idle: 1
2626
max-active: 20
@@ -29,7 +29,7 @@ spring:
2929
redis:
3030
database: 0
3131
host: 39.108.110.44
32-
password: ****
32+
password: danbai225
3333
port: 6379
3434
timeout: 1000
3535
mybatis:

src/main/resources/jdbc.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
jdbc.driverClass=com.mysql.jdbc.Driver
2-
jdbc.connectionURL=jdbc:mysql://127.0.0.1:3306/ys?useUnicode=true&characterEncoding=utf-8&useSSL=false
3-
jdbc.username=****
4-
jdbc.password=***
2+
jdbc.connectionURL=jdbc:mysql://39.108.110.44:3306/ys?useUnicode=true&characterEncoding=utf-8&useSSL=false
3+
jdbc.username=ys
4+
jdbc.password=hjj2251

0 commit comments

Comments
 (0)