In your SecurityFilterChain bean try setting the session management to stateless, update it like this
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
http.csrf().disable()
.authorizeHttpRequests((authorize)->{
authorize.requestMatchers("/v1/open","/v1/open/**").permitAll();
authorize.anyRequest().authenticated();
}).httpBasic(Customizer.withDefaults())
.sessionManagement(sessionManagement ->sessionManagement.sessionCreationPolicy(SessionCreationPolicy.STATELESS));
return http.build();
}