SecurityConfig Circular Reference

I’ve been trying to figure out this error for days. I’ve looked at similar questions and they either don’t apply or I don’t know enough about spring-security to make them apply.
I’ve migrated to spring-boot-starter-parent 3.3.2 from 2.3.9.RELEASE to be able to do a Java 11 to 21 upgrade. I’m getting the following message on startup.

org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'securityConfig': Requested bean is currently in creation: Is there an unresolvable circular reference?

Any help would be greatly appreciated. I’m pretty awful with spring-security and this is all legacy code.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>@Configuration
@EnableWebSecurity
public class SecurityConfig {
@Autowired
Environment env;
@Autowired
public void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(preAuthenticatedAuthenticationProvider());
}
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.authorizeHttpRequests((authz) -> authz.requestMatchers("/secure/**").authenticated());
http.authorizeHttpRequests((authz) -> authz.requestMatchers("/insecure/**", "/actuator/**").permitAll());
http.httpBasic(Customizer.withDefaults());
http.csrf(csrf -> csrf.disable());
http.sessionManagement(sess -> sess.sessionCreationPolicy(SessionCreationPolicy.STATELESS));
http.exceptionHandling(eh -> eh.authenticationEntryPoint(new FailedAuthenticationEntryPoint()));
return http.build();
}
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return (web) -> web.ignoring().requestMatchers("/insecure/**", "/actuator/**");
}
@Bean
public AbstractPreAuthenticatedProcessingFilter preAuthFilter() throws Exception {
GetParameterAuthenticationFilter filter = new GetParameterAuthenticationFilter();
// How can I get access to this "magic" method again?
// filter.setAuthenticationManager(authenticationManager());
return filter;
}
/**
* This uses {@link AverageSpeedUserDetailsService} to turn API keys into full user objects.
*/
@Bean
public PreAuthenticatedAuthenticationProvider preAuthenticatedAuthenticationProvider() {
PreAuthenticatedAuthenticationProvider p = new PreAuthenticatedAuthenticationProvider();
p.setPreAuthenticatedUserDetailsService(new UserDetailsByNameServiceWrapper<>(avgSpeedUserDetailsService()));
return p;
}
@Bean
public AverageSpeedUserDetailsService avgSpeedUserDetailsService() {
ApiKeyAuthority aka = new ApiKeyAuthority(userDataSource());
AverageSpeedUserDetailsService service = new AverageSpeedUserDetailsService(aka);
return service;
}
@Bean
public DataSource userDataSource() {
BasicDataSource ds = new BasicDataSource();
ds.setDriverClassName(org.postgresql.Driver.class.getName());
ds.setUrl(env.getRequiredProperty("db.apikey.url"));
ds.setUsername(env.getRequiredProperty("db.apikey.user"));
ds.setPassword(env.getRequiredProperty("db.apikey.password"));
return ds;
}
}
</code>
<code>@Configuration @EnableWebSecurity public class SecurityConfig { @Autowired Environment env; @Autowired public void configure(AuthenticationManagerBuilder auth) throws Exception { auth.authenticationProvider(preAuthenticatedAuthenticationProvider()); } @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((authz) -> authz.requestMatchers("/secure/**").authenticated()); http.authorizeHttpRequests((authz) -> authz.requestMatchers("/insecure/**", "/actuator/**").permitAll()); http.httpBasic(Customizer.withDefaults()); http.csrf(csrf -> csrf.disable()); http.sessionManagement(sess -> sess.sessionCreationPolicy(SessionCreationPolicy.STATELESS)); http.exceptionHandling(eh -> eh.authenticationEntryPoint(new FailedAuthenticationEntryPoint())); return http.build(); } @Bean public WebSecurityCustomizer webSecurityCustomizer() { return (web) -> web.ignoring().requestMatchers("/insecure/**", "/actuator/**"); } @Bean public AbstractPreAuthenticatedProcessingFilter preAuthFilter() throws Exception { GetParameterAuthenticationFilter filter = new GetParameterAuthenticationFilter(); // How can I get access to this "magic" method again? // filter.setAuthenticationManager(authenticationManager()); return filter; } /** * This uses {@link AverageSpeedUserDetailsService} to turn API keys into full user objects. */ @Bean public PreAuthenticatedAuthenticationProvider preAuthenticatedAuthenticationProvider() { PreAuthenticatedAuthenticationProvider p = new PreAuthenticatedAuthenticationProvider(); p.setPreAuthenticatedUserDetailsService(new UserDetailsByNameServiceWrapper<>(avgSpeedUserDetailsService())); return p; } @Bean public AverageSpeedUserDetailsService avgSpeedUserDetailsService() { ApiKeyAuthority aka = new ApiKeyAuthority(userDataSource()); AverageSpeedUserDetailsService service = new AverageSpeedUserDetailsService(aka); return service; } @Bean public DataSource userDataSource() { BasicDataSource ds = new BasicDataSource(); ds.setDriverClassName(org.postgresql.Driver.class.getName()); ds.setUrl(env.getRequiredProperty("db.apikey.url")); ds.setUsername(env.getRequiredProperty("db.apikey.user")); ds.setPassword(env.getRequiredProperty("db.apikey.password")); return ds; } } </code>
@Configuration
@EnableWebSecurity
public class SecurityConfig {

    @Autowired
    Environment env;

    @Autowired
    public void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(preAuthenticatedAuthenticationProvider());
    }

    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
        http.authorizeHttpRequests((authz) -> authz.requestMatchers("/secure/**").authenticated());
        http.authorizeHttpRequests((authz) -> authz.requestMatchers("/insecure/**", "/actuator/**").permitAll());
        http.httpBasic(Customizer.withDefaults());
        http.csrf(csrf -> csrf.disable());
        http.sessionManagement(sess -> sess.sessionCreationPolicy(SessionCreationPolicy.STATELESS));
        http.exceptionHandling(eh -> eh.authenticationEntryPoint(new FailedAuthenticationEntryPoint()));

        return http.build();
    }

    @Bean
    public WebSecurityCustomizer webSecurityCustomizer() {
        return (web) -> web.ignoring().requestMatchers("/insecure/**", "/actuator/**");
    }

    @Bean
    public AbstractPreAuthenticatedProcessingFilter preAuthFilter() throws Exception {
        GetParameterAuthenticationFilter filter = new GetParameterAuthenticationFilter();
        // How can I get access to this "magic" method again?
        // filter.setAuthenticationManager(authenticationManager());
        return filter;
    }

    /**
     * This uses {@link AverageSpeedUserDetailsService} to turn API keys into full user objects.
     */
    @Bean
    public PreAuthenticatedAuthenticationProvider preAuthenticatedAuthenticationProvider() {
        PreAuthenticatedAuthenticationProvider p = new PreAuthenticatedAuthenticationProvider();
        p.setPreAuthenticatedUserDetailsService(new UserDetailsByNameServiceWrapper<>(avgSpeedUserDetailsService()));
        return p;
    }

    @Bean
    public AverageSpeedUserDetailsService avgSpeedUserDetailsService() {
        ApiKeyAuthority aka = new ApiKeyAuthority(userDataSource());
        AverageSpeedUserDetailsService service = new AverageSpeedUserDetailsService(aka);
        return service;
    }

    @Bean
    public DataSource userDataSource() {
        BasicDataSource ds = new BasicDataSource();
        ds.setDriverClassName(org.postgresql.Driver.class.getName());
        ds.setUrl(env.getRequiredProperty("db.apikey.url"));
        ds.setUsername(env.getRequiredProperty("db.apikey.user"));
        ds.setPassword(env.getRequiredProperty("db.apikey.password"));
        return ds;
    }
}

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật