我有一个如下的弹簧安全配置。
http.authorizeRequests().antMatchers("/css/**").permitAll().and().authorizeRequests().antMatchers("/imgs/**").permitAll().anyRequest()
.fullyAuthenticated().and()
//.csrf().disable().authorizeRequests().antMatchers(HttpMethod.POST, "/updatepass/**").permitAll().anyRequest().fullyAuthenticated().and()
.formLogin().loginPage("/login")
.failureUrl("/login?error=401").permitAll().and()
//.csrf().ignoringAntMatchers("/updatepass").and()
.logout().permitAll().and().csrf().disable()
.authorizeRequests().antMatchers("/register").hasRole("ADMIN").and()
.authorizeRequests().antMatchers("/registeruser").hasRole("ADMIN");
我想允许/updatepass
允许任何请求的POST方法,即使它不是一个autherized请求。我尝试了以下注释配置,但它仍然是我的登录页面。
我要打开的目标POST URL是一个可以接收JSON请求的API。完整的网址为/updatepass
我尝试添加/**
无效。请不要建议XML配置。请只提供Java配置。
答案 0 :(得分:6)
尝试使用以下实现添加configure(WebSecurity web)
的重载方法。
public void configure(WebSecurity web)
throws Exception {
web.ignoring().antMatchers(HttpMethod.POST, "/updatepass/**");
}