| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- spring:
- application:
- name: websocket-server
- security:
- user:
- name: admin
- password: select111***
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://10.10.100.166:3306/school?characterEncoding=utf-8&useSSL=false&allowMultiQueries=true
- username: root
- password: select111***
- hikari:
- minimum-idle: 5
- maximum-pool-size: 50
- idle-timeout: 30000
- max-lifetime: 1800000
- connection-timeout: 30000
- messages:
- basename: i18n/messages
- encoding: UTF-8
- rabbitmq:
- host: 10.10.100.166
- port: 3306
- virtual-host: school
- username: school
- password: select111***
- zipkin:
- sender:
- type: rabbit
- locator:
- discovery:
- enabled: true
- sleuth:
- sampler:
- probability: 1.0
- redis:
- host: 10.1.81.62
- port: 6379
- profiles:
- active: dev
- eureka:
- instance:
- leaseRenewalIntervalInSeconds: 10
- health-check-url-path: /actuator/health
- status-page-url-path: /actuator/info
- metadata-map:
- user.name: ${spring.security.user.name}
- user.password: ${spring.security.user.password}
- client:
- registryFetchIntervalSeconds: 5
- serviceUrl:
- defaultZone: http://${spring.security.user.name}:${spring.security.user.password}@10.1.81.61:8510/eureka/
- management:
- endpoints:
- web:
- exposure:
- include: "*"
- endpoint:
- health:
- show-details: always
- server:
- port: 9620
- tomcat:
- uri-encoding: UTF-8
- info:
- name: '@project.artifactId@'
- description: '@project.description@'
- version: '@project.version@'
- spring-boot-version: '@spring.boot.version@'
- spring-cloud-version: '@spring.cloud.version@'
- mybatis:
- type-aliases-package: com.usoftchina.smartschool.po
- mapper-locations: classpath:mapper/*.xml
- auth:
- public-key: auth/pub.key
- ribbon:
- ReadTimeout: 10000
- ConnectTimeout: 10000
- feign:
- hystrix:
- enabled: true
- hystrix:
- command:
- default:
- execution:
- timeout:
- enabled: true
- isolation:
- thread:
- timeoutInMilliseconds: 4000
|