aukey-finance-upms-biz-prd.yml 1.3 KB
## spring security 配置
security:
  oauth2:
    client:
      client-id: ENC(c5ebVTRN5xEzRooPfOtZ0w==)
      client-secret: ENC(c5ebVTRN5xEzRooPfOtZ0w==)
      scope: server
      # 默认放行url,子模块重写时application-dev.yml中的公共配置会被覆盖,所以要把公共配置中的放行url再写一次
      ignore-urls:
      #  - '/actuator/**'
        - '/v2/api-docs'
        - '/user/info/*'
        - '/social/info/*'
        - '/social/getsocialbytype/*'
        - '/mobile/*'
        - '/log/save'
        - '/swagger**'
        - '/swagger**/**'
        - '/webjars/springfox-swagger-ui/**'        
        
# 数据源
spring:
  datasource:
    type: com.zaxxer.hikari.HikariDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    username: trobs
    password: +bdKL~ykG4
    url: jdbc:mysql://rm-wz98uta593nt9fnha.mysql.rds.aliyuncs.com/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8

# swagger相关配置,覆盖全局配置
swagger:
  authorization:
    authorization-scope-list:
      - scope: 'server'
        description: 'server all'
      - scope: 'read'
        description: 'read all'
      - scope: 'write'
        description: 'access all'
# Logger Config
logging:
  level:
    com.trob4cloud.trobs.admin.mapper: info