123456789101112131415161718192021 |
- server:
- port: 10086
- servlet:
- context-path: /
- tomcat:
- uri-encoding: UTF-8
- max-threads: 10000
- max-connections: 100000
- spring:
- application:
- name: office-service
- profiles:
- active: dev
- # mybatis-plus 配置
- mybatis-plus:
- configuration:
- # 是否将sql打印到控制面板(该配置会将sql语句和查询的结果都打印到控制台)
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|