123456789101112131415161718192021222324252627 |
- server:
- port: 8080
- spring:
- profiles:
- active: dev
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- call-setters-on-nulls: true
- map-underscore-to-camel-case: true
- redis:
- host: localhost
- database: 0
- password:
- port: 6379
- security:
- url:
- ignored:
- - /login
- - /test
- eas:
- jwt-secret-key: 123456
- jwt-expires-date: 1
- password-sign-key: eas-key-password
|