新增以下内容1.客户端查看详情和断开连接,2.规则引擎的增删改查,3.资源的增删改查,

This commit is contained in:
sxh
2022-04-21 12:43:59 +08:00
44 changed files with 3588 additions and 589 deletions

View File

@@ -42,15 +42,15 @@ spring:
messages:
# 国际化资源文件路径
basename: i18n/messages
profiles:
profiles:
active: druid
# 文件上传
servlet:
multipart:
# 单个文件大小
max-file-size: 10MB
# 设置总上传的文件大小
max-request-size: 20MB
multipart:
# 单个文件大小
max-file-size: 10MB
# 设置总上传的文件大小
max-request-size: 20MB
# 服务模块
devtools:
restart:
@@ -65,8 +65,8 @@ spring:
# 数据库索引
database: 0
# 密码
# password: wumei-smart
# password: 123456
# password: wumei-smart
# password: 123456
# 连接超时时间
timeout: 10s
lettuce:
@@ -79,7 +79,7 @@ spring:
max-active: 8
# #连接池最大阻塞等待时间(使用负值表示没有限制)
max-wait: -1ms
# mqtt 配置
# mqtt 配置
mqtt:
username: wumei-smart # 账号
password: wumei-smart # 密码
@@ -95,30 +95,30 @@ spring:
core-size: 10 # 最小连接数
max-size: 30 # 最大连接数
queue-capacity: 3000 # 最大容量
# token配置
token:
# 令牌自定义标识
header: Authorization
# 令牌密钥
secret: abcdefghijklwumeismartrstuvwxyz
# 令牌有效期默认30分钟1440为一天
expireTime: 1440
# 令牌自定义标识
header: Authorization
# 令牌密钥
secret: abcdefghijklwumeismartrstuvwxyz
# 令牌有效期默认30分钟1440为一天
expireTime: 1440
# MyBatis配置
mybatis:
# 搜索指定包别名
typeAliasesPackage: com.ruoyi.**.domain
# 配置mapper的扫描找到所有的mapper.xml映射文件
mapperLocations: classpath*:mapper/**/*Mapper.xml
# 加载全局的配置文件
configLocation: classpath:mybatis/mybatis-config.xml
# 搜索指定包别名
typeAliasesPackage: com.ruoyi.**.domain
# 配置mapper的扫描找到所有的mapper.xml映射文件
mapperLocations: classpath*:mapper/**/*Mapper.xml
# 加载全局的配置文件
configLocation: classpath:mybatis/mybatis-config.xml
# PageHelper分页插件
pagehelper:
pagehelper:
helperDialect: mysql
supportMethodsArguments: true
params: count=countSql
params: count=countSql
# Swagger配置
swagger:
@@ -128,10 +128,10 @@ swagger:
pathMapping: /dev-api
# 防止XSS攻击
xss:
xss:
# 过滤开关
enabled: true
# 排除链接(多个用逗号分隔)
excludes: /system/notice
# 匹配链接
urlPatterns: /system/*,/monitor/*,/tool/*
urlPatterns: /system/*,/monitor/*,/tool/*