logistics-owms-biz-bis.yml 1.4 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: logitmp
    password: hwEEygZxFm%f
    url: jdbc:mysql://cf8c4b4250744c308de9cc7d5968b433in01.internal.ap-southeast-1.mysql.rds.myhuaweicloud.com/logistics_wms?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true&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.logistics4cloud.logistics.owms.mapper: debug