application-test.yml 619 Bytes
spring:
    datasource:
        url: jdbc:mysql://testdb-master:3306/gxb_fast?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
        username: test
        password: 123456
        #连接池的配置信息
        initialSize: 10
        minIdle: 10
        maxActive: 100
        maxWait: 60000
        timeBetweenEvictionRunsMillis: 60000
        minEvictableIdleTimeMillis: 300000
        validationQuery: SELECT 1 FROM DUAL
        testWhileIdle: true
        testOnBorrow: false
        testOnReturn: false
        poolPreparedStatements: true
        maxPoolPreparedStatementPerConnectionSize: 20