# 开发环境配置
server:
  # 服务器的HTTP端口,默认为8080
  port: 8904
  servlet:
    # 应用的访问路径
    context-path: /gassDeviceReport
  tomcat:
    # tomcat的URI编码
    uri-encoding: UTF-8
    # tomcat最大线程数,默认为200
    max-threads: 800
    # Tomcat启动初始化的线程数,默认值25
    min-spare-threads: 30

spring:
 profiles:
   active: test


#mybatis的相关配置
mybatis:
  #mapper配置文件
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.zehong.gassdevicereport.entity
  #开启驼峰命名
  configuration:
    map-underscore-to-camel-case: true

# 日志配置
logging:
  level:
    com.zehong: debug
    org.springframework: warn