| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- dubbo:
- application:
- name: file-service
- qos-enable: true
- qos-port: 16103
- qos-accept-foreign-ip: false
- scan:
- base-packages: cn.reghao.tnb.file.app.rpc
- protocol:
- name: dubbo
- port: 6103
- server:
- port: 6003
- tomcat:
- max-http-form-post-size: 4MB
- spring:
- servlet:
- multipart:
- max-request-size: 1GB
- max-file-size: 1GB
- application:
- name: file-service
- profiles:
- active: @profile.active@
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- 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.file.app.model.po
- app:
- ossType: 1
- eureka:
- instance:
- prefer-ip-address: true
- client:
- register-with-eureka: true
- fetch-registry: true
|