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.
141 lines
3.7 KiB
141 lines
3.7 KiB
server:
|
|
port: @server.port@
|
|
servlet:
|
|
context-path: /auth
|
|
|
|
spring:
|
|
application:
|
|
name: epmet-auth-server
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
#环境 dev|test|prod
|
|
profiles:
|
|
active: @spring.profiles.active@
|
|
messages:
|
|
encoding: UTF-8
|
|
basename: i18n/messages_common
|
|
jackson:
|
|
time-zone: GMT+8
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
redis:
|
|
database: @spring.redis.index@
|
|
host: @spring.redis.host@
|
|
port: @spring.redis.port@
|
|
password: @spring.redis.password@
|
|
timeout: 30s
|
|
cloud:
|
|
nacos:
|
|
discovery:
|
|
server-addr: @nacos.server-addr@
|
|
#nacos的命名空间ID,默认是public
|
|
namespace: @nacos.discovery.namespace@
|
|
#不把自己注册到注册中心的地址
|
|
register-enabled: @nacos.register-enabled@
|
|
config:
|
|
enabled: @nacos.config-enabled@
|
|
server-addr: @nacos.server-addr@
|
|
namespace: @nacos.config.namespace@
|
|
group: @nacos.config.group@
|
|
file-extension: yaml
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: "*"
|
|
endpoint:
|
|
health:
|
|
show-details: ALWAYS
|
|
|
|
mybatis-plus:
|
|
mapper-locations: classpath:/mapper/**/*.xml
|
|
#实体扫描,多个package用逗号或者分号分隔
|
|
typeAliasesPackage: com.epmet.entity
|
|
global-config:
|
|
#数据库相关配置
|
|
db-config:
|
|
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
|
id-type: ID_WORKER
|
|
banner: false
|
|
#原生配置
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
cache-enabled: false
|
|
call-setters-on-nulls: true
|
|
jdbc-type-for-null: 'null'
|
|
|
|
feign:
|
|
hystrix:
|
|
enabled: true
|
|
client:
|
|
config:
|
|
default:
|
|
loggerLevel: BASIC
|
|
httpclient:
|
|
enabled: true
|
|
|
|
hystrix:
|
|
command:
|
|
default:
|
|
execution:
|
|
isolation:
|
|
thread:
|
|
timeoutInMilliseconds: 60000 #缺省为1000
|
|
|
|
ribbon:
|
|
ReadTimeout: 300000
|
|
ConnectTimeout: 300000
|
|
jwt:
|
|
token:
|
|
#秘钥
|
|
secret: 7016867071f0ebf1c46f123eaaf4b9d6[elink.epmet]
|
|
#token有效时长,默认7天,单位秒
|
|
expire: 604800
|
|
wx:
|
|
mp:
|
|
configs:
|
|
- appId: @wx.mp.configs.appId@
|
|
secret: @wx.mp.configs.secret@
|
|
token: @wx.mp.configs.token@
|
|
aesKey: @wx.mp.configs.aesKey@
|
|
ma:
|
|
configs:
|
|
- appid: @resi.wx.ma.appId@
|
|
secret: @resi.wx.ma.secret@
|
|
token: #微信小程序消息服务器配置的token
|
|
aesKey: #微信小程序消息服务器配置的EncodingAESKey
|
|
msgDataFormat: JSON
|
|
- appid: @gov.wx.ma.appId@
|
|
secret: @gov.wx.ma.secret@
|
|
token: #微信小程序消息服务器配置的token
|
|
aesKey: #微信小程序消息服务器配置的EncodingAESKey
|
|
msgDataFormat: JSON
|
|
# - appid: @oper.wx.ma.appId@
|
|
# secret: @oper.wx.ma.secret@
|
|
# token: #微信小程序消息服务器配置的token
|
|
# aesKey: #微信小程序消息服务器配置的EncodingAESKey
|
|
# msgDataFormat: JSON
|
|
appId:
|
|
# 党群e事通-居民端小程序配置appId
|
|
resi: @resi.wx.ma.appId@
|
|
# 党群e事通-政府端小程序配置的appId
|
|
gov: @gov.wx.ma.appId@
|
|
# 党群e事通-运营端小程序配置的appId
|
|
#oper: @oper.wx.ma.appId@
|
|
|
|
dingTalk:
|
|
robot:
|
|
webHook: @dingTalk.robot.webHook@
|
|
secret: @dingTalk.robot.secret@
|
|
|
|
# 停机选项
|
|
shutdown:
|
|
graceful:
|
|
enable: true #是否开启优雅停机
|
|
waitTimeSecs: 30 # 优雅停机等待时间,超过30秒,发出告警
|
|
|
|
# 调用第三方平台相关参数
|
|
thirdplat:
|
|
jcet:
|
|
domain: http://101.206.141.251:21006
|
|
appkey: soXDEoM1
|
|
appsecret: V7ea0KnlYt7eSyzc
|