application.yml 808 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #mybatis-plus配置
  2. mybatis-plus:
  3. mapper-locations: classpath:mappers/*.xml
  4. #实体扫描,多个package用逗号或者分号分隔
  5. typeAliasesPackage: com.ims.eval.entity,com.ims.**.entity
  6. configuration:
  7. #设置当查询结果值为null时,同样映射该查询字段给map。
  8. call-setters-on-nulls: true
  9. global-config:
  10. db-config:
  11. id-type: assign_uuid #设置主键为uuid
  12. #swagger扫描路径配置
  13. swagger:
  14. base-packages:
  15. - com.ims.eval
  16. spring:
  17. cloud:
  18. gateway:
  19. httpclient:
  20. connect-timeout: 1000
  21. response-timeout: 5s
  22. iam:
  23. active: dev
  24. gateway-url:
  25. dev: http://10.65.78.23:18600/
  26. pro: http://10.65.79.83:86/
  27. menu:
  28. dev: 10105
  29. pro: 6802
  30. flow-url:
  31. dev: http://10.65.78.23:8080
  32. pro: http://10.65.79.85:8080