新增客户端资源服务
This commit is contained in:
parent
1075fb2eff
commit
dbf66cdb22
@ -0,0 +1,33 @@
|
|||||||
|
package ink.wgink.login.oauth2.client.config;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
||||||
|
import org.springframework.security.config.http.SessionCreationPolicy;
|
||||||
|
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
|
||||||
|
import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ClassName: ResourceConfig
|
||||||
|
* @Description: 资源服务器
|
||||||
|
* @Author: WangGeng
|
||||||
|
* @Date: 2019/2/27 11:33 AM
|
||||||
|
* @Version: 1.0
|
||||||
|
**/
|
||||||
|
@Configuration
|
||||||
|
@EnableResourceServer
|
||||||
|
public class OAuth2ResourceServerConfig extends ResourceServerConfigurerAdapter {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void configure(HttpSecurity http) throws Exception {
|
||||||
|
http
|
||||||
|
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED)
|
||||||
|
.and()
|
||||||
|
.requestMatchers()
|
||||||
|
.antMatchers("/resource/**")
|
||||||
|
.and()
|
||||||
|
.authorizeRequests()
|
||||||
|
.antMatchers("/resource/**")
|
||||||
|
.authenticated();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user