guang
2023-05-06 7201205af85508421037119ba66b3a6a48de61ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
server.port=8080
 
logging.config=classpath:log4j2-local.xml
 
spring.datasource.write.url=jdbc:mysql://localhost:3306/phi_other_service?useUnicode=true&characterEncoding=UTF-8
spring.datasource.write.username=root
spring.datasource.write.password=root
spring.datasource.write.driverClassName=com.mysql.cj.jdbc.Driver
 
spring.datasource.read.jdbc-url=jdbc:mysql://localhost:3306/phi_other_service_read?useUnicode=true&characterEncoding=UTF-8
spring.datasource.read.username=root
spring.datasource.read.password=root
spring.datasource.read.driver-class-name=com.mysql.cj.jdbc.Driver
 
logging.level.org.springframework.boot.autoconfigure = error
 
spring.datasource.write.type=com.alibaba.druid.pool.DruidDataSource
spring.datasource.write.filters=stat,wall,log4j
spring.datasource.write.initial-size=10
spring.datasource.write.max-active=50
spring.datasource.write.min-idle=10
spring.datasource.write.max-wait=20
spring.datasource.write.time-between-eviction-runs-millis=60000
spring.datasource.write.min-evictable-idle-time-millis=300000
spring.datasource.write.test-on-borrow=true
spring.datasource.write.test-while-idle=false
 
mybatis.type-aliases-package=com.hx.other.servcie.model
mybatis.mapperLocations=com/hx/other/service/dao/mapper/xml/*.xml,classpath*:com/gitee/sunchenbin/mybatis/actable/mapping/*/*.xml,classpath*:mapper/*.xml
 
#mybatis
mybatis.table.auto=update
mybatis.model.pack=com.hx.other.service.model
mybatis.database.type=mysql
 
spring.jackson.date-format= yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
 
pagehelper.helper-dialect=mysql
pagehelper.params=count=countSql
pagehelper.reasonable=true
pagehelper.support-methods-arguments=true
 
forest.timeout=10000