bootstrap.yaml 495 B

12345678910111213141516171819202122232425
  1. server:
  2. port: 7003
  3. servlet:
  4. context-path: /simulation/resource/server
  5. spring:
  6. application:
  7. name: simulation-resource-server
  8. profiles:
  9. active: dev
  10. servlet:
  11. multipart:
  12. max-file-size: 1024MB
  13. max-request-size: 1024MB
  14. # 分页插件配置
  15. pagehelper:
  16. helperDialect: mysql
  17. reasonable: true
  18. supportMethodsArguments: true
  19. params: count=countSql
  20. mybatis:
  21. mapper-locations: classpath:/mapper/*/*.xml
  22. configuration:
  23. map-underscore-to-camel-case: true