123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- ruoyi:
-
- name: RuoYi
-
- version: 3.8.1
-
- copyrightYear: 2021
-
- demoEnabled: true
-
- profile: D:/ruoyi/uploadPath
-
- addressEnabled: false
-
- captchaType: math
- server:
-
- port: 8008
- servlet:
-
- context-path: /
- tomcat:
-
- uri-encoding: UTF-8
-
- max-threads: 800
-
- min-spare-threads: 30
- spring:
-
- messages:
-
- basename: i18n/messages
- profiles:
- active: dev
-
- servlet:
- multipart:
-
- max-file-size: 10MB
-
- max-request-size: 20MB
-
- devtools:
- restart:
-
- enabled: true
- token:
-
- header: Authorization
-
- secret: abcdefghijklmnopqrstuvwxyz
-
- expireTime: 3000
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml,classpath:/META-INF/modeler-mybatis-mappings/*.xml
-
- typeAliasesPackage: com.ruoyi.**.entity,com.ruoyi.**.domain
- global-config:
-
- db-config:
-
- id-type: ASSIGN_ID
- banner: false
-
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- call-setters-on-nulls: true
- jdbc-type-for-null: 'null'
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- configuration-properties:
- prefix:
- blobType: BLOB
- boolValue: TRUE
- pagehelper:
- helperDialect: mysql
- supportMethodsArguments: true
- params: count=countSql
- swagger:
-
- enabled: true
-
- pathMapping: /dev-api
- xss:
-
- enabled: true
-
- excludes: /system/notice
-
- urlPatterns: /system/*,/monitor/*,/tool/*
|