123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- monitor:
-
- name: monitor
-
- version: 1.0.0
-
- copyrightYear: 2023
-
- demoEnabled: true
-
- profile: D:/monitor/uploadPath
-
- addressEnabled: false
-
- captchaType: math
-
- permissionsEnable: false
- server:
- tomcat:
-
- uri-encoding: UTF-8
-
- accept-count: 1000
- threads:
-
- max: 800
-
- min-spare: 100
- logging:
- level:
- com.ozs: debug
- org.springframework: warn
- user:
- password:
-
- maxRetryCount: 5
-
- lockTime: 10
- spring:
-
- messages:
-
- basename: i18n/messages
-
- servlet:
- multipart:
-
- max-file-size: 10MB
-
- max-request-size: 20MB
-
- devtools:
- restart:
-
- enabled: true
-
- redis:
-
- host: localhost
-
- port: 6379
-
- database: 0
-
- password:
-
- timeout: 100s
- lettuce:
- pool:
-
- min-idle: 0
-
- max-idle: 8
-
- max-active: 8
-
- max-wait: -1ms
- token:
-
- header: Authorization
-
- secret: abcdefghijklmnopqrstuvwxyz
-
- expireTime: 3000
- mybatis:
-
- typeAliasesPackage: com.ozs.**.system
-
- mapperLocations: classpath*:mapper/**/*Mapper.xml
-
- configLocation: classpath:mybatis/mybatis-config.xml
- mybatis-plus:
- config-location: classpath:mybatis/mybatis-config.xml
- typeAliasesPackage: com.ozs.**.system
- mapperLocations: classpath*:mapper/**/*Mapper.xml
- pagehelper:
- helperDialect: mysql
- supportMethodsArguments: true
- params: count=countSql
- swagger:
-
- enabled: true
-
-
- pathMapping: /
- xss:
-
- enabled: true
-
- excludes: /system/notice
-
- urlPatterns: /system/*,/monitor/*,/tool/*
|