无法覆盖配置方法

发布于 2025-01-09 23:29:49 字数 430 浏览 1 评论 0原文

我在我的 Spring Boot 项目中使用 Spring Security 我想我不能覆盖配置方法

  @Configuration
@EnableWebSecurity
class SecConfig extends WebSecurityConfigurer {

@Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(authenticationProvider());

@Override
    protected void configure(HttpSecurity http) throws Exception {
}
}

我尝试了很多次但我不能覆盖配置方法

i am using spring security in my spring boot project i want i cant overide configure method

  @Configuration
@EnableWebSecurity
class SecConfig extends WebSecurityConfigurer {

@Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(authenticationProvider());

@Override
    protected void configure(HttpSecurity http) throws Exception {
}
}

i tried many it time but i cant overide the configure method

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯淡〆 2025-01-16 23:29:49

您正在使用“webSecurityConfigurer”扩展该类。尝试使用

“WebSecurityConfigurerAdapter”扩展它

you are extending the class with "webSecurityConfigurer" .Try to extend it with

"WebSecurityConfigurerAdapter"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文