12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- server:
- port: 8775
- # 驱动配置信息
- spring:
- profiles:
- active: local
- datasource:
- driver-class-name: org.neo4j.jdbc.Driver
- url: jdbc:neo4j:http://192.168.3.150:7474
- username: neo4j
- password: 12345678
- #定义初始连接数
- initialSize: 0
- #定义最大连接数
- maxActive: 20
- #定义最大空闲
- maxIdle: 20
- #定义最小空闲
- minIdle: 1
- #定义最长等待时间
- maxWait: 60000
- cloud:
- stream:
- bindings:
- outputLog:
- destination: myLog
- # contentType: text/plain # 实体 json string 在传递的类型装换 查看 http://docs.spring
- #mq
- rabbitmq:
- host: 192.168.2.236
- port: 5672
- username: lantone
- password: lantone
- publisher-confirms: true
- virtual-host: /
- # 配置缓存,初始缓存容量,最大容量
- cache:
- type: caffeine
- caffeine:
- spec: initialCapacity=10,maximumSize=200
- #mybatis
- mybatis:
- type-aliases-package: com.diagbot.entity
- mapper-locations: classpath:mapper/**/*.xml
|