You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.3 KiB
103 lines
2.3 KiB
2 years ago
|
server:
|
||
|
port: 9305
|
||
|
servlet:
|
||
|
context-path: /user
|
||
|
|
||
|
#配置是否为debug模式,debug模式下,不开启权限校验
|
||
|
debug: false
|
||
|
|
||
|
#datasource数据源设置
|
||
|
spring:
|
||
|
datasource:
|
||
|
url: jdbc:mysql://139.159.177.244:3306/hsg_order?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
|
||
|
username: root
|
||
|
password: HF123456.
|
||
|
type: com.alibaba.druid.pool.DruidDataSource
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
filters: stat
|
||
|
maxActive: 10
|
||
|
initialSize: 5
|
||
|
maxWait: 60000
|
||
|
minIdle: 5
|
||
|
timeBetweenEvictionRunsMillis: 60000
|
||
|
minEvictableIdleTimeMillis: 300000
|
||
|
validationQuery: select 'x'
|
||
|
testWhileIdle: true
|
||
|
testOnBorrow: false
|
||
|
testOnReturn: false
|
||
|
poolPreparedStatements: true
|
||
|
maxOpenPreparedStatements: 20
|
||
|
redis:
|
||
|
database: 0
|
||
|
host: 139.159.177.244
|
||
|
port: 36379
|
||
|
password: HF123456.Redis
|
||
|
timeout: 1000
|
||
|
jedis:
|
||
|
pool:
|
||
|
max-active: 20
|
||
|
max-wait: -1
|
||
|
max-idle: 10
|
||
|
min-idle: 0
|
||
|
#MQTT配置信息
|
||
|
mqtt:
|
||
|
#MQTT服务地址
|
||
|
url: ws://139.159.177.244:8083/mqtt
|
||
|
#用户名
|
||
|
username: printer_provider
|
||
|
#密码
|
||
|
password: 123654
|
||
|
#客户端id(不能重复)
|
||
|
# client:
|
||
|
# id: provider-id
|
||
|
#MQTT默认的消息推送主题,实际可在调用接口是指定
|
||
|
# default:
|
||
|
# topic: topic
|
||
|
rocketmq:
|
||
|
name-server: 139.159.177.244:9876
|
||
|
producer:
|
||
|
#必须指定group
|
||
|
group: default-group
|
||
|
|
||
|
#配置日期返回至前台为时间戳
|
||
|
jackson:
|
||
|
serialization:
|
||
|
write-dates-as-timestamps: true
|
||
|
mybatis:
|
||
|
mapperLocations:
|
||
|
- classpath*:sqlmap*/*.xml
|
||
|
type-aliases-package:
|
||
|
org.springboot.sample.entity
|
||
|
configuration:
|
||
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
#开启MyBatis的二级缓存
|
||
|
cache-enabled: true
|
||
|
|
||
|
jetcache:
|
||
|
statIntervalMinutes: 15
|
||
|
areaInCacheName: false
|
||
|
local:
|
||
|
default:
|
||
|
type: linkedhashmap
|
||
|
keyConvertor: fastjson
|
||
|
remote:
|
||
|
default:
|
||
|
type: redis
|
||
|
host: 139.159.177.244
|
||
|
port: 36379
|
||
|
password: HF123456.Redis
|
||
|
keyConvertor: fastjson
|
||
|
broadcastChannel: projectA
|
||
|
valueEncoder: java
|
||
|
valueDecoder: java
|
||
|
poolConfig:
|
||
|
minIdle: 5
|
||
|
maxIdle: 20
|
||
|
maxTotal: 50
|
||
|
|
||
|
pagehelper:
|
||
|
helperDialect: mysql
|
||
|
reasonable: true
|
||
|
supportMethodsArguments: true
|
||
|
params: count=countSql
|