牛骨文教育服务平台(让学习变的简单)
博文笔记

spring boot security csrf ignore

创建时间:2016-05-20 投稿人: 浏览次数:1215

在一个工程中使用了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做的东西非常到位呀

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。