application.yml 559 B

123456789101112131415161718192021222324252627282930313233
  1. server:
  2. port: 8091
  3. spring:
  4. mvc:
  5. pathmatch:
  6. matching-strategy: ant-path-matcher
  7. profiles:
  8. active: local
  9. application:
  10. name: portal-service-server
  11. feign:
  12. okhttp:
  13. enabled: true
  14. ribbon:
  15. ConnectTimeout: 3000
  16. ReadTimeout: 3000
  17. mybatis:
  18. configuration:
  19. #开启驼峰命名
  20. map-underscore-to-camel-case: true
  21. mybatis-plus:
  22. global-config:
  23. db-config:
  24. logic-delete-field: del_flag
  25. logic-delete-value: 1
  26. logic-not-delete-value: 0
  27. sa-token:
  28. config:
  29. ignoreUrls:
  30. - /wap/user/**
  31. - /v2/**