SpringSecurity自定义登录认证

需求

Spring Security默认的登录表单只有username和password,但实际业务中我们可能需要使用其他的字段校验,因此需要重写认证部分。

web.xml


    
        springSecurityFilterChain
        org.springframework.web.filter.DelegatingFilterProxy
    
    
        springSecurityFilterChain
        /*
    

security.xml

spring security的配置,需要web.xml扫描




    
    
    

    
    
        

        
        
        
        
            
        
    

    
    
         
                    

你可能感兴趣的:(Spring全家桶)