12345678910111213141516171819202122232425 |
- package com.shawn.security;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.http.HttpMethod;
- import org.springframework.security.config.annotation.web.builders.HttpSecurity;
- import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
- import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;
- /**
- * @author 吴洪双
- */
- @Configuration
- @EnableResourceServer
- public class ResourceServerConfiguration extends ResourceServerConfigurerAdapter {
- @Override
- public void configure(HttpSecurity http) throws Exception {
- http
- .authorizeRequests()
- // .antMatchers("/users/**").authenticated()
- // .antMatchers(HttpMethod.GET, "/books/**").permitAll()
- .anyRequest().permitAll();
- }
- }
|