码迷,mamicode.com
首页 > 编程语言 > 详细

springboot 访问时 403 错误

时间:2020-04-05 15:20:23      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:security   div   http   spring   override   api   over   col   style   

1. 403是被服务器拒绝了,一般是spring security造成的,springsecurity会开启跨域认证,所以不关闭这个的话会访问api会出现403错误

 

2.解决

@Override
    protected void configure(HttpSecurity http) throws Exception {
        http
            
            .and()
            .csrf()
            .disable()
....

在spring security 的控制类中加入以下代码即可,关闭跨域认证.

springboot 访问时 403 错误

标签:security   div   http   spring   override   api   over   col   style   

原文地址:https://www.cnblogs.com/lishuaiqi/p/12637263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!