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.
37 lines
978 B
37 lines
978 B
server: |
|
port: 8083 |
|
tongweb: |
|
license: |
|
path: classpath:license/license.dat |
|
|
|
spring: |
|
profiles: |
|
active: @profiles.active@ |
|
datasource: |
|
driver-class-name: oracle.jdbc.OracleDriver |
|
#driver-class-name: dm.jdbc.driver.DmDriver |
|
|
|
servlet: |
|
multipart: |
|
max-file-size: 100MB |
|
max-request-size: 100MB |
|
|
|
mybatis-plus: |
|
# 对应的 XML 文件位置 |
|
mapper-locations: classpath*:mapper/*Mapper.xml |
|
|
|
# Sa-token配置 |
|
sa-token: |
|
token-name: admin # token的名称 |
|
timeout: 86400 # token有效期单位s 默认24小时(24 * 60 * 60) |
|
active-timeout: -1 # token临时有效期(指定时间无操作掉线) |
|
is-concurrent: false # 是否允许同一账号并发登录 |
|
is-share: false # 多人同登账号共用token |
|
token-style: random-64 # token生成的风格 |
|
is-print: false # 打印版本字符画 |
|
is-log: false # 是否输出操作日志 |
|
|
|
logging: |
|
level: |
|
root: INFO |
|
com.biutag: debug |