This repository was archived by the owner on Nov 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +59
-25
lines changed
user-api/src/main/resources Expand file tree Collapse file tree 4 files changed +59
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ server :
2
+ port : 10001
3
+ logging :
4
+ level : info
5
+ pattern :
6
+ console : %d{HH:mm:ss} [%t][%-5level] %msg \\(%F:%L\\)%n
7
+ spring :
8
+ datasource :
9
+ driver-class-name : com.mysql.cj.jdbc.Driver
10
+ url : jdbc:mysql://${DDD_DB_URL}?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&tinyInt1isBit=false
11
+ username : ${DDD_DB_ID}
12
+ password : ${DDD_DB_PW}
13
+ hikari :
14
+ auto-commit : false
15
+ connection-test-query : SELECT 1
16
+ minimum-idle : 5
17
+ maximum-pool-size : 20
18
+ transaction-isolation : 1
19
+ pool-name : pool-of-user
20
+ jpa :
21
+ database-platform : org.hibernate.dialect.MySQL8Dialect
22
+ hibernate :
23
+ ddl-auto : update
24
+ naming :
25
+ physical-strategy : org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
26
+ implicit-strategy : org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
27
+ show-sql : true
28
+ open-in-view : false
29
+
Original file line number Diff line number Diff line change
1
+ server :
2
+ port : 10001
3
+ logging :
4
+ level :
5
+ root : info
6
+ pattern :
7
+ console : " %d{HH:mm:ss} [%t][%-5level] %msg \\ (%F:%L\\ )%n"
8
+ spring :
9
+ datasource :
10
+ driver-class-name : com.mysql.cj.jdbc.Driver
11
+ url : jdbc:mysql://${DDD_DB_URL}?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&tinyInt1isBit=false
12
+ username : ${DDD_DB_ID}
13
+ password : ${DDD_DB_PW}
14
+ hikari :
15
+ auto-commit : false
16
+ connection-test-query : SELECT 1
17
+ minimum-idle : 5
18
+ maximum-pool-size : 20
19
+ transaction-isolation : 1
20
+ pool-name : pool-of-user
21
+ jpa :
22
+ database-platform : org.hibernate.dialect.MySQL8Dialect
23
+ hibernate :
24
+ ddl-auto : update
25
+ naming :
26
+ physical-strategy : org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
27
+ implicit-strategy : org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
28
+ show-sql : true
29
+ open-in-view : false
30
+
You can’t perform that action at this time.
0 commit comments