No mapping found for HTTP request with URI [/pms/j_spring_security_check] in DispatcherServlet with name 'appServlet'

后端 未结 3 832
甜味超标
甜味超标 2021-02-06 05:37

I have developed a Spring application and I implement Spring security integration to Login and Logout function in it. I used Spring security with xml configuration. But when I l

3条回答
  •  半阙折子戏
    2021-02-06 05:58

    Try changing your servlet mappings in your web xml to this:

    
        appServlet
        /*
    
    
    
        springSecurityFilterChain
        /*
    
    

提交回复
热议问题