4

我正在尝试配置示例https://github.com/dsyer/spring-security-angular/tree/master/oauth2/ui以将 eureka 用于 userAuthorizationUri 部分,但到目前为止没有运气。我的 oauth2 服务器是通过 eureka 注册的

   server:
      port: ${PORT:${SERVER_PORT:0}}
    debug:
    security:
      user:
        password: none
    zuul:
      routes:
        resource:
          path: /resource/**
          url: http://localhost:9000/resource
        user:
          path: /user/**
          serviceId: authentication-service/uaa/user

    spring:
      application:
        name: ui-service
      oauth2:
        sso:
          home:
            secure: false
            path: /,/**/*.html
        client:
          accessTokenUri: http://authentication-service/uaa/oauth/token
          userAuthorizationUri: http://authentication-service/uaa/oauth/authorize
          clientId: acme
          clientSecret: acmesecret
        resource:
          serviceId: ${PREFIX:}resource
          jwt:
            keyValue: |
              -----BEGIN PUBLIC KEY-----
              MYKEY
              -----END PUBLIC KEY-----
    logging:
      level:
        org.springframework.security: DEBUG
    eureka:
      instance:
        metadataMap:
          instanceId: ${spring.application.name}:${spring.application.instance_id:${random.int(10000)}}
      client:
        serviceUrl:
          defaultZone: http://localhost:8888/eureka/
4

0 回答 0