123456789101112131415161718192021222324252627 |
- ## spring security 配置
- security:
- oauth2:
- client:
- client-id: ENC(ltJPpR50wT0oIY9kfOe1Iw==)
- client-secret: ENC(ltJPpR50wT0oIY9kfOe1Iw==)
- scope: server
- # 数据源
- spring:
- datasource:
- type: com.zaxxer.hikari.HikariDataSource
- driver-class-name: com.mysql.jdbc.Driver
- username: root
- password: root
- url: jdbc:mysql://pigx-mysql:3306/pigxx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true
- # swagger相关配置,覆盖全局配置
- swagger:
- authorization:
- authorization-scope-list:
- - scope: 'server'
- description: 'server all'
- - scope: 'read'
- description: 'read all'
- - scope: 'write'
- description: 'access all'
|