您的位置:首页 > 编程语言 > Java开发

spring boot security csrf ignore

2016-05-20 16:35 519 查看
在一个工程中使用了spring boot security csrf ,

工程中有一部分是api,通过url进行调用,并且要求使用post请求

那么麻烦来了,使用了csrf,调用api的请求被拒了,原因就是没有csrf,认为session过期了

怎么绕过去呢

public class SecurityConfig extends WebSecurityConfigurerAdapter{

protected void configure(HttpSecurity http) throws Exception {

http.authorizeRequests()

.and().csrf().ignoringAntMatchers("/api/**")

这样就好了,看来spring做的东西非常到位呀
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: