bootstrap.yml 662 B

123456789101112131415161718192021222324252627
  1. server:
  2. port: 6010 # 端口号
  3. servlet:
  4. context-path: ${spring.application.name} # 访问路径,如果不配置,访问IP:端口号,配置后访问IP:端口号/${context-path}
  5. spring:
  6. application:
  7. name: / # 项目名称
  8. http:
  9. encoding: # http编码
  10. force: true
  11. charset: UTF-8
  12. enabled: true
  13. profiles:
  14. active: local
  15. qc:
  16. hospital_id: 4,5
  17. logging: # 日志
  18. config: classpath:logback-spring.xml
  19. mybatis-plus:
  20. mapper-locations: classpath:/mapper/lt/*Mapper.xml
  21. type-aliases-package: com.lantone.qc.dbanaly.lt.entity
  22. configuration:
  23. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl