120 lines
3.5 KiB
YAML
120 lines
3.5 KiB
YAML
server:
|
||
port: 8790
|
||
servlet:
|
||
session:
|
||
timeout: 1440m
|
||
spring:
|
||
security:
|
||
user:
|
||
name: data_njcn
|
||
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
|
||
#url: jdbc:mysql://25.36.232.37:13306/pmsinfo?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=CTT
|
||
#username: root
|
||
#password: Huawei12#
|
||
#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
|
||
|
||
#influx:
|
||
#url: http://25.36.232.36:8086
|
||
#user: admin
|
||
#password: admin
|
||
#database: pqsbase_hbcs
|
||
#mapper-location: com.njcn.influx.imapper
|
||
|
||
|
||
roma:
|
||
acceptIp: 25.36.190.3:19776
|
||
sendIp: 25.36.190.7:11443
|
||
appId: X_DNZLXT
|
||
appKey: IoKU7u47seGwzO4CqGmCaQ==
|
||
|
||
|
||
#mybatis配置信息
|
||
mybatis-plus:
|
||
#别名扫描
|
||
type-aliases-package: com.njcn.roma.pojo
|
||
global-config:
|
||
enable-sql-runner: true
|
||
configuration:
|
||
#驼峰命名
|
||
map-underscore-to-camel-case: true
|
||
#配置sql日志输出
|
||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|