1.添加安全登录功能
2.调整部分接口
This commit is contained in:
@@ -10,6 +10,82 @@ spring:
|
||||
password: dnzl@#002
|
||||
application:
|
||||
name: roma
|
||||
#datasource:
|
||||
#type: com.zaxxer.hikari.HikariDataSource
|
||||
#driver-class-name: org.sqlite.JDBC
|
||||
#url: "jdbc:sqlite:D:\\pmsTest.db"
|
||||
|
||||
|
||||
|
||||
autoconfigure:
|
||||
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
||||
datasource:
|
||||
dynamic:
|
||||
druid:
|
||||
initial-size: 10
|
||||
# 初始化大小,最小,最大
|
||||
min-idle: 20
|
||||
maxActive: 500
|
||||
# 配置获取连接等待超时的时间
|
||||
maxWait: 60000
|
||||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||
timeBetweenEvictionRunsMillis: 60000
|
||||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||
minEvictableIdleTimeMillis: 300000
|
||||
testWhileIdle: true
|
||||
testOnBorrow: true
|
||||
validation-query: SELECT 1 from dual
|
||||
testOnReturn: false
|
||||
# 打开PSCache,并且指定每个连接上PSCache的大小
|
||||
poolPreparedStatements: false
|
||||
maxPoolPreparedStatementPerConnectionSize: -1
|
||||
filters: stat,wall
|
||||
filter:
|
||||
wall:
|
||||
config:
|
||||
multi-statement-allow: true
|
||||
none-base-statement-allow: true
|
||||
enabled: true
|
||||
# 配置DruidStatFilter
|
||||
web-stat-filter:
|
||||
enabled: true
|
||||
url-pattern: "/*"
|
||||
exclusions: "*.js,*.gif,*.jpg,*.bmp,*.png,*.css,*.ico,/druid/*"
|
||||
# 配置DruidStatViewServlet
|
||||
stat-view-servlet:
|
||||
enabled: true
|
||||
url-pattern: "/druid/*"
|
||||
# IP白名单(没有配置或者为空,则允许所有访问)
|
||||
allow: #127.0.0.1,192.168.163.1
|
||||
# IP黑名单 (存在共同时,deny优先于allow)
|
||||
deny: #192.168.1.73
|
||||
# 禁用HTML页面上的“Reset All”功能
|
||||
reset-enable: false
|
||||
# 登录名
|
||||
login-username: admin
|
||||
# 登录密码
|
||||
login-password: njcnpqs
|
||||
query-timeout: 36000
|
||||
primary: master
|
||||
strict: false
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://192.168.1.24:13306/pqsinfo_pmscs?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=CTT
|
||||
username: root
|
||||
password: njcnpqs
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
sqlite:
|
||||
url: "jdbc:sqlite:D:\\pmsTest.db"
|
||||
driver-class-name: org.sqlite.JDBC
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
|
||||
|
||||
#influxDB内容配置
|
||||
influx:
|
||||
url: http://192.168.1.24:8086
|
||||
user: admin
|
||||
password: 123456
|
||||
database: pqsinfo_pms
|
||||
|
||||
|
||||
roma:
|
||||
@@ -18,3 +94,10 @@ roma:
|
||||
appId: X_DNZLXT
|
||||
appKey: IoKU7u47seGwzO4CqGmCaQ==
|
||||
|
||||
|
||||
#mybatis配置信息
|
||||
mybatis-plus:
|
||||
#别名扫描
|
||||
type-aliases-package: com.njcn.roma.pojo
|
||||
global-config:
|
||||
enable-sql-runner: true
|
||||
Reference in New Issue
Block a user