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