spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:postgresql://49.4.49.80:5656/db_bajgxxxt?currentSchema=public username: root password: Bcxin@202110 # 下面为连接池的补充设置,应用到上面所有数据源中 initialSize: 5 minIdle: 5 maxActive: 20 # 配置获取连接等待超时的时间 maxWait: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 timeBetweenEvictionRunsMillis: 60000 # 配置一个连接在池中最小生存的时间,单位是毫秒 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 1 testWhileIdle: true testOnBorrow: false testOnReturn: false # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙 filters: stat,wall,log4j logSlowSql: true jpa: hibernate: ddl-auto: none show-sql: true database-platform: org.hibernate.dialect.PostgresPlusDialect application: name: rbac-api dubbo: registry: address: nacos://${nacos.address:localhost}:8849?username=nacos&password=nacos config-center: address: nacos://${nacos.address:localhost}:8849?username=nacos&password=nacos