无法覆盖配置方法
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在使用“webSecurityConfigurer”扩展该类。尝试使用
“WebSecurityConfigurerAdapter”扩展它
you are extending the class with "webSecurityConfigurer" .Try to extend it with
"WebSecurityConfigurerAdapter"