Is there any way to authorize post request to a specific url using org.springframework.security.config.annotation.web.builders.HttpSecurity ?
org.springframework.security.config.annotation.web.builders.HttpSecurity
I\'m usin
Just Mention the path you need to remove Authentication like this
http .httpBasic().and() .authorizeRequests() .antMatchers("/employees" , "/employees/**") .permitAll().anyRequest().authenticated() .and().csrf().disable()