You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.3 KiB
70 lines
1.3 KiB
![]()
3 years ago
|
spring:
|
||
|
application:
|
||
|
name: anrui-flowable
|
||
|
profiles:
|
||
|
active: devv
|
||
|
messages:
|
||
|
# 国际化资源文件路径
|
||
|
basename: i18n/messages
|
||
|
servlet:
|
||
|
#上传文件
|
||
|
multipart:
|
||
|
max-file-size: 50MB
|
||
|
max-request-size: 100MB
|
||
|
devtools:
|
||
|
restart:
|
||
|
# 热部署开关
|
||
|
enabled: true
|
||
|
# 解决时差显示差8小时问题
|
||
|
jackson:
|
||
|
time-zone: GMT+8
|
||
|
mvc:
|
||
|
async:
|
||
|
request-timeout: 20000
|
||
|
|
||
|
|
||
|
server:
|
||
|
port: 7001
|
||
|
max-http-header-size: 102400
|
||
|
undertow:
|
||
|
max-http-post-size: -1
|
||
|
# 日志配置
|
||
|
logging:
|
||
|
level:
|
||
|
com.yxt.anrui.flowable: debug
|
||
|
org.springframework: warn
|
||
|
org:
|
||
|
flowable:
|
||
|
engine:
|
||
|
impl:
|
||
|
persistence.entity.*: debug
|
||
|
task:
|
||
|
service:
|
||
|
impl:
|
||
|
persistence.entity.*: debug
|
||
|
|
||
|
|
||
|
flowable:
|
||
|
database-schema-update: true
|
||
|
common:
|
||
|
app:
|
||
|
idm-url: http://localhost:7001/flowable-idm
|
||
|
idm-admin:
|
||
|
user: admin
|
||
|
password: test
|
||
|
|
||
|
#mybatis
|
||
|
mybatis-plus:
|
||
|
mapper-locations: classpath*:**Mapper.xml
|
||
|
global-config:
|
||
|
refresh: true
|
||
|
db-config:
|
||
|
id-type: Auto
|
||
|
db-type: mysql
|
||
|
configuration:
|
||
|
map-underscore-to-camel-case: false
|
||
|
cache-enabled: true
|
||
|
call-setters-on-nulls: true
|
||
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
|