Good morning.
I have a Web Service Rest implemented and I am working on the security of the same one at the moment.
This Web Service was implemented using Spring Boot. Initially I will have clients as an Android Application and a Web Appli...
I'm in doubt as to how to get the user's name in the session. I'm using Spring Security 4.2
I have my User Class
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import lombok.Data;
@E...
Well the start question may seem a bit confusing, but basically I'd like to know if it's possible to have more than one validation form of spring security:form-login , since I have two things in my system where validation will be different,...
I'm trying to create a friendly error page in case LDAP is off the air, but unfortunately the only answer I get is j_spring_security_check .
I tried to map the exception in web.xml , but I was not successful.
<error-page>...
I'm trying to implement a login with Spring Security 4.0.1.RELEASE and JSF 2.2, trying to login it always returns as invalid login.
login.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/D...
Hello, I'm doing a project using the Spring Framework, and I need to do a very simple authentication, using users created in the same user table (without any integration with social networks). But I do not know how to do it, I'm using Spring...
What is the structure used for the combination Spring Boot, Spring Security and Angular Js to manage the login and the Spring application will be in rest.
Will the login controller be in rest format too or will it be in the ModelAndView frame...