| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- dubbo:
- application:
- name: content-service
- qos-enable: true
- qos-port: 16105
- qos-accept-foreign-ip: false
- scan:
- base-packages: cn.reghao.tnb.content.app.vod.rpc,cn.reghao.tnb.content.app.mall.rpc
- protocol:
- name: dubbo
- port: 6105
- server:
- port: 6005
- tomcat:
- max-http-form-post-size: 4MB
- spring:
- application:
- name: content-service
- profiles:
- active: @profile.active@
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- type: com.zaxxer.hikari.HikariDataSource
- hikari:
- minimum-idle: 5
- maximum-pool-size: 10
- auto-commit: true
- idle-timeout: 30000
- pool-name: EvaluationHikariCP
- max-lifetime: 1800000
- connection-timeout: 30000
- connection-test-query: SELECT 1
- mybatis:
- configuration:
- map-underscore-to-camel-case: true
- mapper-locations: classpath*:mapper/**.xml
- type-aliases-package: cn.reghao.tnb.content.app.model.po
- eureka:
- instance:
- prefer-ip-address: true
- client:
- register-with-eureka: true
- fetch-registry: true
- #management:
- # endpoints:
- # web:
- # base-path: /api/content/actuator
- # exposure:
- # include: "*"
- # metrics:
- # tags:
- # application: ${spring.application.name}
|