您现在的位置是: 首页 > 后端开发 SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
2020-06-10 【后端开发】 5020人已围观 8396次浏览
简介SpringBoot 2.x Security security.basic.enabled=false 失效问题解决
在将一个 SpringBoot 1.x 的项目升级到 2.x 的过程中,测试时发现之前在 1.x 项目中,关闭 Security 验证的配置不可用了
security:
basic:
enabled: false
查看文档发现,这样的配置在 2.0+ 之后就无法使用了,在 SpringBoot 2.x 的项目中,需要通过代码去配置
也就是继承 WebSecurityConfigurerAdapter 类,并重写其中的 configure(HttpSecurity http) 方法
我们可以新建一个类叫做 SecurityConfig,并加入以下代码
import org.springframework.context.annotation.Configuration;
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;
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.anyRequest().permitAll().and().logout().permitAll();//配置不需要登录验证
}
}
之后重新运行 SpringBoot 项目,访问任意接口,就都不需要使用 Security 自动生成的账号密码登录了
很赞哦! (0)
相关文章
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- 记一次Java MessageFormat.format踩坑
- SpringBoot 启动测试时出现提示 Test class should have exactly one public zero-argument constructor
- SpringBoot @NotBlank 不生效问题
- 获取阿里云CDN真实IP
- springboot引入mybatis-plus后出现ClassNotFoundException: org.mybatis.logging.LoggerFactory
- Nestedset 出现 Node must exists. 错误解决方案
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SqlServer 查询包含指定字段的存储过程
- PHP 在执行 composer install 时出现提示 PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <...>
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Mac降温软件推荐smcFanControl
- SpringBoot 启动提示 Requested bean is currently in creation: Is there an unresolvable circular reference?
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- 优化 Mac 上 office 软件更新慢的问题
- 在使用Flutter进行网络请求时,使用Dio访问https地址出现unable to get local issuer certificate错误
- 【代码片段】MySQL 查看数据库所有表注释
- Chrome 谷歌浏览器清除HTTPS证书缓存
- Vue 路由跳转后不在顶部
- 使用 OpenSSL 将 pfx 格式证书转为 pem 格式
- nuxt 项目完整部署方案