出错信息如下:

解决办法:在项目中添加WebSecrurityConfig.java
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@EnableWebSecurity
public class WebSecrurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.cors().and().csrf().disable();
}
}

本文介绍了如何通过添加WebSecurityConfig.java来解决项目中遇到的安全配置错误。通过启用WebSecurity并禁用CSRF和配置CORS,确保了API的安全访问。
1万+

被折叠的 条评论
为什么被折叠?



