You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
602 B
17 lines
602 B
spring:
|
|
#jdbc config
|
|
datasource:
|
|
#MySQL数据库支持配置
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://mysql-1.itax.local:36000/sales_order?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
|
|
username: sales_manager
|
|
password: ueHjqtam%zB^WqW5
|
|
type: com.zaxxer.hikari.HikariDataSource
|
|
hikari:
|
|
minimum-idle: 5
|
|
maximum-pool-size: 150
|
|
idle-timeout: 60000
|
|
pool-name: OrderHikariCP
|
|
max-lifetime: 1200000
|
|
connection-timeout: 60000
|
|
connection-test-query: SELECT 1
|
|
|