Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
server.servlet.session.timeout=60m
#项目名,如果不设定,默认是 /
server.servlet.context-path=/xzxAdmin
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/xzx_check?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_xzxhb?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_test_check?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_test_check?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_xzxhb_pro?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/chart_test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_xzxdev?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://192.168.0.100:3306/t_apixzxdev?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.url=jdbc:mysql://122.114.191.64:3306/xzx_check?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
spring.datasource.baseDataSource.username=root
spring.datasource.baseDataSource.password=admin!@#00
 
rabbitmq:
host: 192.168.0.100
port: 5672
username: admin
password: admin!@#00
virtual-host: /
 
 
 
 
#spring.datasource.baseDataSource.url=jdbc:mysql://127.0.0.1:3306/xzxadmin?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false&useInformationSchema=true
#spring.datasource.baseDataSource.username=root
#spring.datasource.baseDataSource.password=123456
 
spring.datasource.baseDataSource.driver-class-name=com.mysql.cj.jdbc.Driver
 
beetlsql.ds.baseDataSource.basePackage=com
beetlsql.ds.baseDataSource.dbStyle=org.beetl.sql.core.db.MySqlStyle
#beetlsql.basePackage=com.ibeetl,com.xxx.yourpackage
#有一个数据源命名为baseDataSource,你可以添加多数据源
beetlsql.mutiple.datasource=baseDataSource
 
 
 
 
# 1,1 是管理员密码,相当于启动后就登录,方便测试,系统需要取消这俩个配置
user.id=1
user.orgId=1
#打开审计功能,开发模式应该关闭
audit.enable=false
#单机情况下使用hashmap存放回话,集群下可以参考springboot 使用redis
spring.session.store-type=HASH_MAP
#spring.cache.type=
spring.cache.type=simple
logging.level.root=info
logging.level.org.springframework.web.servlet.mvc.method.annotation=warn
#logging.file = my.log
server.port=8080
server.address=0.0.0.0
#html视图交给beetl渲染
beetl.suffix=html
app.name=小棕熊后台管理系统V1.0
logging.pattern.console=%-4relative [%thread] %-5level %logger{256} %M %L - %msg%n
#文档预览服务的调用地址,参考https://gitee.com/kekingcn/file-online-preview 安装,没有如下配置无法使用预览功能
file.previewURL=http://localhost:8012/onlinePreview
 
 
file.export.path=/resource/static/img
#file.upload.path=/resource/static/img
 
#文件上传路径
file.upload.path=D:\\img\\
#文件前缀E://
#file.address=http://192.168.1.100:8080/resource/static/img
file.address=D:\\img\\
 
localFile.root=/
 
# 证书位置
ssl.certificate=D:/ 
 
# 定时任务
charsTime=0 0 14 * * ?
charsTimex=1
 
# Redis数据库索引(默认为0)
spring.redis.database=2
# Redis服务器地址
spring.redis.host=192.168.0.100
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=admin!@#00
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=2000
 
spring.jmx.enabled=false
 
#极光推送
jg.appkey=15d3c598bcce63efd84814ef
jg.secret=2c7cf147b030c5c9317cd954
 
#微信证书地址
wx.path=/xzx/wx/apiclient_cert.p12
wx.appid.app=wx2bd35a71991e48ac
wx.app.key=QUJvGnZT17N4TAQHISnST6mqLJbaAM5F
wx.app.url=https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers
wx.appid=wx9c43b2bf3aad415b
wx.mchid=1546567611
wx.name=湖南小棕熊环保科技有限责任公司
wx.create.ip=127.0.0.1
 
gaode.fence.url=https://restapi.amap.com/v4/geofence/meta?key=
 
 
#ruleTime=0 1 0 ? * MON
ruleTime=0 0 14 * * ?