Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
1 replies
44 views

I am a recently graduated student.I made a decision to become software developer,I know its weird because of current AI trend and impact on developers.But its not about that,I started learning java ...
Varun Kumar's user avatar
Best practices
1 vote
0 replies
79 views

There are lots of good examples for how to configure Spring Boot for CORS online, but it seems to be very hard to find anything with an intersection of: Using the APIs in Spring Boot 3 rather than ...
Jules's user avatar
  • 15.3k
1 vote
1 answer
106 views

I am building a company-specific Spring Boot autoconfiguration. The code looks something like this: @AutoConfiguration @AutoConfigureBefore(SecurityAutoConfiguration.class) @...
Wim Deblauwe's user avatar
  • 27.3k
0 votes
1 answer
113 views

I have a Spring Boot REST API written in Kotlin using Keycloak with Spring Security for authentication and authorization. I want to expose one endpoint publicly but protect it with Cloudflare ...
JailBreaker's user avatar
0 votes
1 answer
47 views

I have a setup where I use Keycloak for user authentication. I use Spring Boot and Spring Security. My backend successfully performs the authentication with Keycloak using authorization_code grant and ...
Stefan Zhelyazkov's user avatar
0 votes
0 answers
45 views

I'm learning the spring security module. Here is my security configuration class: @Configuration @EnableWebSecurity public class SecurityConfiguration { @Bean public SecurityFilterChain ...
9527 snl's user avatar
Advice
0 votes
2 replies
99 views

Is Spring framework 6.x compatible with Spring Security 7.x? I need to upgrade a servlet-based web application to the latest version of Spring Security, but due to some dependency limitations I can't ...
capibara245's user avatar
Best practices
0 votes
4 replies
75 views

I am working to adapt Spring Security v6 in my application and one of the GitHub projects I am using as a model has the following filterChain implementation in its @EnableWebSecurity Configuration ...
amphibient's user avatar
  • 31.8k
2 votes
2 answers
312 views

I am migrating a Spring Boot 3.x application to use Java Virtual Threads. I have replaced my standard async executor with a virtual thread executor: @Bean public Executor taskExecutor() { return ...
Max's user avatar
  • 429
0 votes
1 answer
73 views

I'm implementing authentication with Auth0 in a Spring Boot application using the OAuth2 resource server. Everything works correctly locally, but after deploying to Azure App Service, I cannot access ...
Andreas's user avatar
  • 65
Best practices
0 votes
1 replies
134 views

I am implementing JWT authentication with Spring Security. In this filter I validate the JWT, extract the email, and then load the user using UserDetailsService. @Component @RequiredArgsConstructor ...
Mayank Grover's user avatar
0 votes
0 answers
165 views

My enterprise application code was working earlier for a long time, but without any change to it the SSO Logout for the SAML protocol using Keycloak (version 26.0.0) has stopped working. Basically, I ...
ashtrix-001's user avatar
0 votes
1 answer
165 views

Updated the question with my observations. I am trying to understand Spring Security and i am stuck when implementing tests with @WebMvcTest. I have a Spring Boot 4.0.3 project with spring-boot-...
Saravana Kumar M's user avatar
0 votes
1 answer
108 views

I am trying to understand Spring Security and i am stuck when implementing the integration test. I am using Spring Boot 4.0.3 with spring-boot-starter-webmvc, spring-boot-starter-webmvc-test, spring-...
Saravana Kumar M's user avatar
0 votes
0 answers
89 views

I have a PATCH endpoint for updating user details. My UserRequest record has @Pattern and @NotBlank on the password field. I am facing two problems, one before using validation groups and one after. ...
Mayank Grover's user avatar

15 30 50 per page
1
2 3 4 5
1941