What's the right way to separate the Resource Server and the Authorization Server?

后端 未结 2 925
心在旅途
心在旅途 2021-02-04 14:19

Using spring-security-oauth2 to secure my resources against a SSO endpoint that can act as an authorization server. I\'m a bit confused when the documentation states:

2条回答
  •  甜味超标
    2021-02-04 14:34

    You can separate open resources and protected resources in the spring-security.xml

    Pattern /api/** will be protected and other resources will be open.

    
        
            
            
            
            
            
        
    

提交回复
热议问题