springsecurity登录后依然跳回登录页面的问题

原文链接: https://www.yiibai.com/spring-security/spring-security-4-role-based-login-example.html

一、环境:

spring-security 4.0

spring 4.1

二、问题描述:

今天在配置springsecurity时,无论登录密码是否正确均跳转至登录首页,原始配置如下


        
        
        
        
        
        
    

    
        
            
                
                
                
            
        
    

    

而且在上述配置中,也无法进入我配置的customSuccessHandler的实体中,后经过排查,发现springsecurity确实运行并进行了拦截,但是无论密码是否正确,其依然只会跳回login.jsp,而且不进入我配置的customSuccessHandler中。

最终发现是缺少了login-processing-url="/login.do",加上这句就可以了

以下为正确的配置xml


		
		
		
		

        
		
		
	

	
		
			
				
				
				
			
		
	

	

 

你可能感兴趣的:(springsecurity,Spring)