38 lines
1012 B
YAML
38 lines
1012 B
YAML
|
|
server:
|
||
|
|
port: 2001
|
||
|
|
servlet:
|
||
|
|
encoding:
|
||
|
|
charset: utf-8
|
||
|
|
enabled: true
|
||
|
|
force: true
|
||
|
|
spring:
|
||
|
|
servlet:
|
||
|
|
multipart:
|
||
|
|
max-file-size: 50MB
|
||
|
|
max-request-size: 50MB
|
||
|
|
jackson:
|
||
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
||
|
|
time-zone: GMT+8
|
||
|
|
redis:
|
||
|
|
database: 0
|
||
|
|
port: 6379
|
||
|
|
host: localhost
|
||
|
|
password:
|
||
|
|
mybatis:
|
||
|
|
mapper-locations: classpath*:/mapper/*Mapper.xml
|
||
|
|
type-aliases-package: cn.crtech.cloud.common.pojo.general,cn.crtech.cloud.common.dto.general
|
||
|
|
#配置驼峰下划线
|
||
|
|
configuration:
|
||
|
|
map-underscore-to-camel-case: true
|
||
|
|
logging:
|
||
|
|
config: classpath:logback.xml
|
||
|
|
file:
|
||
|
|
path: logs/crtech-service-wxengine.log
|
||
|
|
level:
|
||
|
|
cn.crtech.cloud.customer: debug
|
||
|
|
weixin:
|
||
|
|
appid: wxc74a3f37e8bdfbed # 设置微信公众号的appid
|
||
|
|
secret: bd58cb0e336efbed8faf907931d2d974 # 设置微信公众号的app corpSecret
|
||
|
|
token: Crtech # 设置微信公众号的token
|
||
|
|
aes-token: yHEUfbxwnmKcjRnMQBWekDo9QvGfHCkC0IRrlbNpg5H # 设置微信公众号的EncodingAESKey
|