myapps: storage: root: /storage-merged siteid: feign-path: /obpm server: port: 9097 tomcat: uri-encoding: UTF-8 servlet: context-path: ${myapps.siteid}/kms session: timeout: 3600 jsp: init-parameters: development: true spring: servlet: multipart: max-file-size: -1 max-request-size: -1 enabled: true mvc: view: prefix: / suffix: .jsp static-path: /** pathmatch: matching-strategy: ANT_PATH_MATCHER http: encoding: force: true charset: UTF-8 enabled: true application: name: obpm-kms jpa: database: mysql show-sql: true hibernate: ddl-auto: update #设置默认schema,可以为空 properties: hibernate: default_schema: dialect: org.hibernate.dialect.MySQL5Dialect cloud: consul: discovery: instance-id: ${spring.application.name}:${vcap.application.instance_id:${spring.application.instance_id:${random.value}}} prefer-ip-address: true health-check-interval: 10s health-check-path: ${myapps.siteid}/kms/actuator/health hostname: ${spring.application.name} service-name: ${spring.application.name} enabled: true tags: management.context-path=/kms/actuator host: 172.20.0.90 port: 8500 # 数据库访问配置(DB-TYPE大小写敏感) datasource: db-type: MYSQL driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://49.4.21.141:45611/obpm2?useSSL=false&characterEncoding=UTF-8&serverTimezone=GMT%2B8 username: bcx password: Wstestv5qy#2022 # 下面为连接池的补充设置,应用到上面所有数据源中 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 #Redis服务器地址 redis: host: 49.4.21.141 port: 6379 password: Bcx#2023 session: store-type: REDIS resources: static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,/ management: endpoints: web: exposure: include: '*' endpoint: health: show-details: ALWAYS health: db: enabled: false ribbon: ReadTimeout: 20000 ConnectTimeout: 20000 logging.level.root: INFO