server:
|
port: 8080
|
|
guns:
|
swagger-open: true #是否开启swagger (true/false)
|
kaptcha-open: false #是否开启登录时验证码 (true/false)
|
# file-upload-path: d:/tmp #文件上传目录(不配置的话为java.io.tmpdir目录)
|
spring-session-open: false #是否开启spring session,如果是多机环境需要开启(true/false)
|
session-invalidate-time: 1800 #session失效时间(只在单机环境下生效,多机环境在SpringSessionConfig类中配置) 单位:秒
|
session-validation-interval: 900 #多久检测一次失效的session(只在单机环境下生效) 单位:秒
|
|
spring:
|
redis:
|
database: 0
|
host: 10.25.14.40
|
port: 6379
|
password: 34b7b13ce8a711e4:chengshI2014
|
|
|
---
|
|
spring:
|
profiles:
|
active: dev
|
application:
|
name: VehicleInspection
|
mvc:
|
static-path-pattern: /static/**
|
view:
|
prefix: /WEB-INF/view
|
devtools:
|
restart:
|
enabled: false
|
additional-paths: src/main/java
|
exclude: static/**,WEB-INF/view/**
|
servlet:
|
multipart:
|
max-request-size: 100MB
|
max-file-size: 100MB
|
|
mybatis-plus:
|
typeAliasesPackage: com.stylefeng.guns.modular
|
configuration:
|
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
|
|
|
---
|
#spring:
|
# datasource:
|
# url: jdbc:mysql://127.0.0.1:3306/vehicle_inspection?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai
|
# username: root
|
# password: 123456
|
# db-name: vehicle_inspection #用来搜集数据库的所有表
|
# filters: wall,mergeStat
|
|
#线上环境
|
spring:
|
datasource:
|
url: jdbc:mysql://rm-m5e57gbu0gdv901ub.mysql.rds.aliyuncs.com:3306/vehicle_inspection?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai
|
username: vehicleInspection
|
password: SYzt1953123456
|
db-name: guns #用来搜集数据库的所有表
|
filters: wall,mergeStat
|
|
|
#多数据源情况的配置
|
guns:
|
muti-datasource:
|
open: false
|
url: jdbc:mysql://127.0.0.1:3306/guns_test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai
|
username: root
|
password: root
|
dataSourceNames:
|
- dataSourceGuns
|
- dataSourceBiz
|
|
---
|
spring:
|
quartz:
|
job-store-type: jdbc
|
jdbc:
|
initialize-schema: embedded
|
properties:
|
org:
|
quartz:
|
scheduler:
|
# 调度器实例名称
|
instanceName: QuartzScheduler
|
# 分布式节点ID自动生成
|
instanceId: AUTO
|
jobStore:
|
class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
# 表前缀
|
tablePrefix: qrtz_
|
# 是否开启集群
|
isClustered: false
|
# 数据源别名(自定义)
|
dataSource: vehicle_inspection
|
# 分布式节点有效性检查时间间隔(毫秒)
|
clusterCheckinInterval: 10000
|
useProperties: false
|
# 线程池配置
|
threadPool:
|
class: org.quartz.simpl.SimpleThreadPool
|
threadCount: 10
|
threadPriority: 5
|
threadsInheritContextClassLoaderOfInitializingThread: true
|
|
---
|
# 任务执行最大线程数
|
maxThreadCount: 50
|