application.yml 432 B

123456789101112131415161718192021
  1. server:
  2. port: 10086
  3. servlet:
  4. context-path: /
  5. tomcat:
  6. uri-encoding: UTF-8
  7. max-threads: 10000
  8. max-connections: 100000
  9. spring:
  10. application:
  11. name: office-service
  12. profiles:
  13. active: dev
  14. # mybatis-plus 配置
  15. mybatis-plus:
  16. configuration:
  17. # 是否将sql打印到控制面板(该配置会将sql语句和查询的结果都打印到控制台)
  18. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl