application.yml 696 B

123456789101112131415161718192021222324252627282930
  1. server:
  2. port: 6008 # 端口号
  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: db
  15. qc:
  16. hospital_id: 2
  17. CRF:
  18. url: http://192.168.2.234:3456/api/mr_info_ex/entity_predict
  19. Similarity:
  20. url: http://192.168.2.234:3456/api/mr_info_ex/similarity
  21. ChiefPresentSimilarity:
  22. url: http://192.168.2.234:3456/api/mr_info_ex/chief_present_similarity
  23. logging: # 日志
  24. config: classpath:logback-spring.xml