Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
39 views

Is there a way i can customize mfa so that if a user logs in with an oidc provider like google or facebook they can simply access my app but if a user wants to log in using a username password ...
Hardik Kumar's user avatar
0 votes
0 answers
76 views

I'm working on a Spring Boot 4.0 API server using Kotlin and JWT authorization. So far I only GET methods are working fine, but POST methods are giving a 403 error. After some debugging I've ...
Jules's user avatar
  • 15.3k
-3 votes
0 answers
62 views

I am working on an auth service and using Spring Boot 4, Spring Security 7 and using a PostgreSQL database to authenticate users using my auth service. One problem I'm running into is that JDBC ...
Hardik Kumar's user avatar
-1 votes
0 answers
80 views

I am a beginner learning Spring Security. I have implemented JWT authentication along with a custom AuthenticationEntryPoint and AccessDeniedHandler. When Spring Security is not enabled, any exception ...
Mayank Grover's user avatar
-3 votes
0 answers
46 views

I am building a Smart Parking application using Spring Boot. I have defined a REST controller with @RestController and @RequestMapping, but when I hit the API endpoint, I get a 404 Not Found error. ...
Sathvika_Nidadavolu's user avatar
Advice
0 votes
2 replies
55 views

I'm working on a Spring Boot (3.5.x) web application using Spring Security and OAuth2 Resource Server. I need to support two types of Bearer tokens for authentication: Standard Bearer JWT: Sent in ...
Airidas36's user avatar
-3 votes
0 answers
37 views

@Bean public DaoAuthenticationProvider authenticationProvider(UserDetailsService userDetailsService, PasswordEncoder passwordEncoder) { DaoAuthenticationProvider authProvider = new ...
mkonate's user avatar
0 votes
0 answers
72 views

I have got a legacy Spring Boot 3.2 application with Spring Security 6.2 and I need to do some updates. It is a stateless API service with HTTP Basic authentication and the following config: @...
Sergey's user avatar
  • 1,371
0 votes
1 answer
60 views

I have a Webflux API that will send customized to end points when user provide wrong credentials. Accordingly I have coded a customized a serverAuthenticationFailureHandler below. import com....
Jose Daniel Navarro Brito's user avatar
1 vote
1 answer
64 views

I have a Spring Boot microservices architecture with BFF Service, API Gateway, and multiple backend services (Product, Order, etc.). Authentication is handled with Keycloak (OAuth2 / JWT). Request ...
Nur Sultan ASLAN's user avatar
-2 votes
0 answers
50 views

I send an email containing a link to a protected page, for example: http://localhost:8080/application/main/page If the user is already logged in, the page opens correctly. If the user is NOT logged ...
Jerisha J's user avatar
2 votes
1 answer
93 views

I use spring boot 4.0.0 & spring security & jsp for web my security config is @Bean SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { log.info("...
Lashgari's user avatar
0 votes
2 answers
247 views

I have a (jwt) security enabled application and have written unit tests to verify the security filtering works as expected. With Spring Boot 3 these unit tests work fine, however, after upgrading to ...
Hayo Baan's user avatar
  • 662
-1 votes
0 answers
52 views

@GetMapping("/find") public List<User> getUsers(){ return service.getUsers(); } @PostMapping("/loging") public ResponseEntity<String> Authenticate(@RequestBody ...
Vishwanath K's user avatar
1 vote
1 answer
100 views

I am running Keycloak and all my Spring Boot microservices (including a BFF) inside Docker. The BFF service (port: 8989) is configured as an OAuth2 client (confidential client) using Authorization ...
Nur Sultan ASLAN's user avatar

15 30 50 per page
1
2 3 4 5
1944