myapps: storage: root: /data/obpm-demo siteid: feign-path: /obpm server: port: 8086 tomcat: uri-encoding: UTF-8 servlet: context-path: ${myapps.siteid}/email session: timeout: 3600 jsp: init-parameters: development: true #spring.activemq.packages.trust-all: true mvc: # view: # prefix: / # suffix: .jsp # static-path: /** pathmatch: matching-strategy: ANT_PATH_MATCHER spring: http: encoding: force: true charset: UTF-8 enabled: true application: name: obpm-email 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}/email/actuator/health hostname: ${spring.application.name} service-name: ${spring.application.name} enabled: true tags: management.context-path=/email/actuator host: 127.0.0.1 port: 10500 # 数据库访问配置 datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://114.115.153.118:3306/obpm2_security?useUnicode=true&characterEncoding=utf8&useCompression=true&serverTimezone=GMT%2B8&useSSL=false username: security password: Security#202103 # 下面为连接池的补充设置,应用到上面所有数据源中 initialSize: 5 minIdle: 5 maxActive: 20 # 配置获取连接等待超时的时间 maxWait: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 timeBetweenEvictionRunsMillis: 60000 # 配置一个连接在池中最小生存的时间,单位是毫秒 minEvictableIdleTimeMillis: 300000 validationQuery: SELECT 1 testWhileIdle: false testOnBorrow: false testOnReturn: false # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙 filters: stat,wall,log4j logSlowSql: true jpa: database: mysql show-sql: true hibernate: naming: implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl ddl-auto: none #设置默认schema,可以为空 properties: hibernate: default_schema: #Redis服务器地址 redis: host: 117.78.33.241 port: 6379 password: bcxin@2019 resources: static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,/ logging.level.root: INFO logging.level.cn.myapps: DEBUG feign: client: config: default: connect-timeout: 60000 read-timeout: 60000 #设置远程调用超时时间 ribbon: ReadTimeout: 20000 ConnectTimeout: 20000 management: endpoints: web: exposure: include: '*' endpoint: health: show-details: ALWAYS