I have the following requirement that I need to implement on a project, but not matter how many books or articles I read on spring security I cannot figure out
I'm trying to setup static content serving on my Tomcat 9 server So I specified it inside server.xml <Host name="${serverhost}" appBase="webapps" unpackWARs=
Currently, we have a spring boot REST application connecting to a mysql database in which we have a table named "User" with several fields. Am
I am working on a web application and I want to implement spring security. I want anyone to be able to see the home page at least. I have attempted to map this
I use the same request func to yield call two api on the server. Model func code: const pomdata = yield call(pullInfo1, payload) const data = yield call(pullinf
Inside a class that extends WebSecurityConfigurerAdapter, I have this authencitation method. I store my users inside an Active Directory. @Override publ
I have a back-end(Springboot) application that is connected to Azure AD and a front-end application that accesses it. In the front-end, I am requiring the user
I am new to web security and implementation of same using spring-security. One important concept is prevention from CSRF using CSRF token. Spring security has p
I want to use the new Spring Security Authorization Server to implement OAuth2 for my webservice. At https://www.baeldung.com/spring-security-oauth-auth-server
I'm looking to find a tool that will do the authentication (and authorization) part of the project. For the project, I will be using spring boot and java 8. I w
Issue : Get request for Swagger UI openAPI is working , whereas other method types giving 403 error. Dependency : <dependency> <groupId>org.
I am working on Spring MVC project. I use Spring Security for secure the url of my project. While i click on login button login succesfully bu
I'm trying to implement Spring Security authentication on Spring WebFlux app. I have implemented Spring Security authentication on Spring Web before. When I rea
I am using react client and new spring-security-oauth2-autorization-server. And I've configured public-client as was suggested in this video . At my local mach
I need to support 3 way of authentication at the same time in the application: LDAP, Azure AD, Basic. After few hours of googling i found that the best way to d
I've changed the way a user is authenticated in my backend. From now on I am receiving JWT tokens from Firebase which are then validated on my Spring Boot serve
I'm trying to implement a client for spring-security's SwitchUserFilter (server-side). As client I'm using KTOR (with OKHttp inside). SwitchUserFilter requires
I have spring boot application which is using 'spring-boot-starter-security', 'spring-ws-security', 'spring-boot-starter-web-services' I am facing below error w
I'm trying to create my own spring boot starter for my custom security configuration (LDAP + JWT) via defining configuration class which extends from WebSecurit
Is it possible to mix two authentication modes? Internal user: Azure ad External user: form authentication So far I have this: @EnableWebSecurity @EnableGlobalM