2022-04-24 11:27:04 +08:00
|
|
|
|
# 大数据部门相关配置
|
|
|
|
|
big_date:
|
|
|
|
|
name: 青岛市大数据发展管理局
|
|
|
|
|
assignee_role_name: 部门审批人
|
2022-04-11 15:03:55 +08:00
|
|
|
|
# Tomcat
|
|
|
|
|
server:
|
|
|
|
|
tomcat:
|
|
|
|
|
uri-encoding: UTF-8
|
|
|
|
|
threads:
|
|
|
|
|
max: 1000
|
|
|
|
|
min-spare: 30
|
|
|
|
|
port: 9090
|
|
|
|
|
servlet:
|
|
|
|
|
context-path: /renren-admin
|
|
|
|
|
session:
|
|
|
|
|
cookie:
|
|
|
|
|
http-only: true
|
|
|
|
|
|
|
|
|
|
spring:
|
|
|
|
|
# 环境 dev|test|prod
|
|
|
|
|
profiles:
|
|
|
|
|
active: dev
|
|
|
|
|
messages:
|
|
|
|
|
encoding: UTF-8
|
|
|
|
|
basename: i18n/messages
|
|
|
|
|
servlet:
|
|
|
|
|
multipart:
|
|
|
|
|
max-file-size: 100MB
|
|
|
|
|
max-request-size: 100MB
|
|
|
|
|
enabled: true
|
|
|
|
|
redis:
|
|
|
|
|
database: 0
|
|
|
|
|
host: 127.0.0.1
|
|
|
|
|
port: 6379
|
|
|
|
|
password: # 密码(默认为空)
|
|
|
|
|
timeout: 6000ms # 连接超时时长(毫秒)
|
|
|
|
|
jedis:
|
|
|
|
|
pool:
|
|
|
|
|
max-active: 1000 # 连接池最大连接数(使用负值表示没有限制)
|
|
|
|
|
max-wait: -1ms # 连接池最大阻塞等待时间(使用负值表示没有限制)
|
|
|
|
|
max-idle: 10 # 连接池中的最大空闲连接
|
|
|
|
|
min-idle: 5 # 连接池中的最小空闲连接
|
|
|
|
|
activiti:
|
|
|
|
|
check-process-definitions: false
|
2022-04-18 13:59:25 +08:00
|
|
|
|
resources:
|
|
|
|
|
static-locations: classpath:/static,classpath:/public,file:${resource.path}
|
2022-04-11 15:03:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fdfs:
|
|
|
|
|
so-timeout: 600000
|
|
|
|
|
connect-timeout: 6000
|
2022-04-18 13:59:25 +08:00
|
|
|
|
tracker-list: #TrackerList参数,支持多个
|
2022-04-11 15:03:55 +08:00
|
|
|
|
- 192.168.10.10:22122
|
|
|
|
|
|
|
|
|
|
# 是否开启redis缓存 true开启 false关闭
|
|
|
|
|
renren.redis.open: false
|
|
|
|
|
|
|
|
|
|
#mybatis
|
|
|
|
|
mybatis-plus:
|
|
|
|
|
mapper-locations: classpath*:/mapper/**/*.xml
|
|
|
|
|
#实体扫描,多个package用逗号或者分号分隔
|
|
|
|
|
typeAliasesPackage: io.renren.modules.*.entity
|
|
|
|
|
global-config:
|
|
|
|
|
#数据库相关配置
|
|
|
|
|
db-config:
|
|
|
|
|
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
|
|
|
|
id-type: ID_WORKER
|
|
|
|
|
banner: false
|
|
|
|
|
#原生配置
|
|
|
|
|
configuration:
|
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
|
cache-enabled: false
|
|
|
|
|
call-setters-on-nulls: true
|
|
|
|
|
jdbc-type-for-null: 'null'
|
2022-04-14 23:51:01 +08:00
|
|
|
|
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|