我有一个spring boot应用程序,可以使用OAuth(应用程序和资源服务器)启用REST。
MyApplication.java
@SpringBootApplication
@EnableResourceServer
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
OAuthConfig.java
@Configuration
@EnableAuthorizationServer
public class OAuthConfig extends AuthorizationServerConfigurerAdapter {
@Autowired
private UserDetailsService userDetailsService;
private TokenStore tokenStore = new InMemoryTokenStore();
@Autowired
private AuthenticationManager authenticationManager;
@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}
@Override
public void configure(AuthorizationServerEndpointsConfigurer configurer) throws Exception {
configurer.authenticationManager(authenticationManager);
configurer.userDetailsService(userDetailsService);
configurer.tokenStore(tokenStore);
}
@Override
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
clients
.inMemory()
.withClient("app")
.secret("secret")
.accessTokenValiditySeconds(120)
.refreshTokenValiditySeconds(600)
.scopes("read", "write")
.authorizedGrantTypes("password", "refresh_token")
.resourceIds("resources");
}
}
SimpleCorsFilter.java
@Component
@Order(Ordered.HIGHEST_PRECEDENCE)
public class SimpleCorsFilter implements Filter {
public SimpleCorsFilter() {
}
@Override
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
HttpServletResponse response = (HttpServletResponse) res;
HttpServletRequest request = (HttpServletRequest) req;
response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");
response.setHeader("Access-Control-Max-Age", "3600");
response.setHeader("Access-Control-Allow-Headers", "x-requested-with, authorization, content-type");
if ("OPTIONS".equalsIgnoreCase(request.getMethod())) {
response.setStatus(HttpServletResponse.SC_OK);
} else {
chain.doFilter(req, res);
}
}
@Override
public void init(FilterConfig filterConfig) {
}
@Override
public void destroy() {
}
}
WebSecurityConfig.java
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers("/signup");
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
}
}
TestController.java
@RestController
public class TestController {
@Autowired
private PanelService testService;
@PostMapping("/test")
public Panel getTest() throws Exception {
return testService.get();
}
}
我已成功生成令牌,并且还可以通过使用上述设置调用refresh_token来获取新令牌。
问题是,我的休息调用也返回数据而不管是否传递了令牌。 /test
始终返回包含或不包含令牌的数据。
我还在HTTP安全性中尝试了不同的选项。即使我使用有效的令牌,下面的一个也总是抛出Forbidden。
http.csrf().disable();
.authorizeRequests()
.antMatchers("/signup").permitAll()
.and()
.authorizeRequests()
.anyRequest().authenticated()
.httpBasic();
我做错了什么?
答案 0 :(得分:2)
我正在回答我自己的问题,以帮助所有面临类似问题的人。
在application.properties文件中设置以下属性
security.oauth2.resource.filter-order=3
Setting Spring boot actuator with oAuth2 in the Authorisation server
Authentication is not working in spring boot 1.5.2 and Oauth2
同样在WebSecurityConfigurerAdapter中,在配置HttpSecurity时添加以下几行(我不确定这段代码如何使其工作 - 我仍在调查中)
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.sessionManagement()
.sessionCreationPolicy(SessionCreationPolicy.STATELESS)
...
}
上面的代码在以下两个示例中引用(请参阅GitHub代码)
http://www.svlada.com/jwt-token-authentication-with-spring-boot/