使用Spring Security 限制URL访问的问题?
@Override
public void configure(HttpSecurity http) throws Exception {
http.csrf().disable()
.httpBasic()
.and()
.formLogin()
.and()
.authorizeRequests() //限制基于Request请求访问
.antMatchers("/token/**").permitAll() // 这里的接口路径不需要登录校验
.anyRequest().authenticated(); // //其他请求都需要经过验证
为什么配置上面的antMatchers("/token/**").permitAll()后,我通过
http://localhost:5100/token/loginView 访问时,控制器loginView方法写的是get请求,但是浏览器访问的时候请求的方式却是post请求,导致报错,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论