Why is Spring Security working in Tomcat but not when deployed to Weblogic?

前端 未结 4 954
野性不改
野性不改 2021-01-03 00:03

I\'m not really a Java developer, but a project for a client has required me to be, so maybe I\'m missing something glaringly obvious.

I\'m using SpringBoot and ever

4条回答
  •  情书的邮戳
    2021-01-03 00:57

    For completeness, if you're deploying to an older version of Weblogic with Servlet spec < 3.0 (e.g. 10.3.6 with 2.5), then you'll need to define the springSecurityFilterChain in your web.xml:

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

提交回复
热议问题