123456789101112131415161718192021222324252627282930313233 |
- server:
- port: 8091
- spring:
- mvc:
- pathmatch:
- matching-strategy: ant-path-matcher
- profiles:
- active: local
- application:
- name: portal-service-server
- feign:
- okhttp:
- enabled: true
- ribbon:
- ConnectTimeout: 3000
- ReadTimeout: 3000
- mybatis:
- configuration:
- #开启驼峰命名
- map-underscore-to-camel-case: true
- mybatis-plus:
- global-config:
- db-config:
- logic-delete-field: del_flag
- logic-delete-value: 1
- logic-not-delete-value: 0
- sa-token:
- config:
- ignoreUrls:
- - /wap/user/**
- - /v2/**
|