application.yml 527 B

1234567891011121314151617181920212223242526
  1. #mybatis-plus配置
  2. mybatis-plus:
  3. # 对应的 XML 文件位置
  4. mapperLocations: classpath*:mapper_xml/*.xml
  5. #租户对应的角色id
  6. manage:
  7. roleId: 10
  8. tenant:
  9. userNumLimit: 1000000 #租户允许创建的用户数
  10. tryDayLimit: 3000 #租户允许试用的天数
  11. #插件配置
  12. plugin:
  13. runMode: prod
  14. pluginPath: plugins
  15. pluginConfigFilePath: pluginConfig
  16. spring:
  17. profiles:
  18. active: test
  19. servlet:
  20. #文件上传限制(byte)
  21. multipart:
  22. max-file-size: 10485760
  23. max-request-size: 10485760