Spring Security Auto Connexion après le registre

	public void authWithHttpServletRequest(HttpServletRequest request, String username, String password) {
	    try {
	        request.login(username, password);
	    } catch (ServletException e) {
	        LOGGER.error("Error while login ", e);
	    }
	}
DevPedrada