As per the title I put some basic authentication in spring boot but how we access some API without authentication login
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest()
.authenticated()
.and()
.httpBasic();
}