|
- eureka:
- client:
- service-url:
- defaultZone: http://localhost:1101/eureka/
- #mapper文件加载支持两种方式,一种是在config文件中配置,一种是在这里配置
- mybatis:
- mapper-locations: classpath:mybatis/mapping/*.xml
- type-aliases-package: com.neusoft.smart.pos.persistent.domain
-
- logging:
- level:
- root: info
- com:
- neusoft:
- smart:
- pos:
- inventory:
- persistent:
- mapper: debug
-
- #DataSource配置,默认主数据源
- spring:
- profiles:
- include: rabbitmq
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.17.173.169:3306/smart_pos_platform_catering_db?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=false
- username: root
- password: fm2020test
- #初始化大小,最小,最大
- initialSize: 5
- minIdle: 5
- maxActive: 20
- #配置获取连接等待超时的时间
- maxWait: 60000
- #配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
- timeBetweenEvictionRunsMillis: 60000
- #配置一个连接在池中最小生存的时间,单位是毫秒
- minEvictableIdleTimeMillis: 300000
- validationQuery: SELECT 1 FROM DUAL
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- #打开PSCache,并且指定每个连接上PSCache的大小
- poolPreparedStatements: true
- maxPoolPreparedStatementPerConnectionSize: 20
- #配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
- filters: stat,wall,log4j
- #通过connectProperties属性来打开mergeSql功能;慢SQL记录
- connectionProperties: druid.stat.mergeSql:true;druid.stat.slowSqlMillis:5000
- #合并多个DruidDataSource的监控数据
- useGlobalDataSourceStat: true
- redis:
- #数据库索引
- database: 0
- #主机地址
- host: 172.17.173.169
- #主机端口
- port: 6379
- #密码
- password:
- #最大连接数,为负表示不限制
- maxTotal: 8
- #最大阻塞等待时间,为负表示不限制
- maxWait: -1
- #最大空闲连接
- maxIdle: 8
- #最小空闲连接
- minIdle: 0
- #连接超时时间
- timeout: 0
- upload:
- path: /tmp
- rabbitmq:
- host: localhost
- username: fmpos
- password: fmpos@server123
- port: 5672
- aliyunRocketmq:
- accessKeyId: LTAI4G7ixY4AhvM35F8o3W3V
- accessKeySecret: VfWqGb83qIQrS9us45utskl8itd7ry
- namesrvAddr: http://MQ_INST_1796289517488555_Bcqaq2is.cn-beijing.mq-internal.aliyuncs.com:8080
- security:
- enable-csrf: false
- ignored:
- - /**
- canApprove: false
- checkStorageOnceMore: true
|