Questions tagged [spring-authorization]

3 questions
0
votes
0 answers

Spring Security Filters Authentication

I am relatively new to Srping Security Framework. During my learning period I have tried to implement a basic authentication security feature for a private api endpoint /private/** . The application also contains a public api /public/** where not…
JPV
  • 1,079
  • 1
  • 18
  • 44
0
votes
0 answers

Spring Boot Authentication - oauth2 login with form logn and other oauth providers

I have following security config file in my authorization server : @EnableWebSecurity public class DefaultSecurityConfig { @Autowired MyUserDetailService myUserDetailService; @Bean SecurityFilterChain…