| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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
- registry:
- group: dubbo
- address: zookeeper://192.168.0.209:2181
- server:
- port: 6005
- tomcat:
- max-http-form-post-size: 4MB
- spring:
- datasource:
- driver-class-name: org.apache.shardingsphere.driver.ShardingSphereDriver
- url: jdbc:shardingsphere:classpath:sharding-${spring.profiles.active}.yml
- cloud:
- discovery:
- enabled: true
- nacos:
- discovery:
- server-addr: 192.168.0.209:8848
- username: nacos
- password: Test_123456
- inetutils:
- ignored-interfaces:
- - docker0
- - veth.*
- preferred-networks:
- - 192.168
- loadbalancer:
- cache:
- enabled: true
- data:
- redis:
- database: 0
- host: 192.168.0.209
- port: 6379
- password: Test_123456
- rabbitmq:
- host: 192.168.0.209
- port: 5672
- virtual-host: /
- username: test
- password: Test_123456
- mybatis:
- configuration:
- map-underscore-to-camel-case: true
- mapper-locations: classpath*:mapper/**.xml
- type-aliases-package: cn.reghao.tnb.content.app.model.po
- feign:
- circuitbreaker:
- enabled: true
- httpclient:
- hc5:
- enabled: true
- connection-request-timeout-unit: seconds
- connection-request-timeout: 1
|