Weblogic 10.3.5 Overriding Spring Version

后端 未结 3 1339
感动是毒
感动是毒 2020-11-30 11:57

I am developing a web application using Oracle\'s OEPE distribution, including Weblogic server 10.3.5. WLS includes its own version of Spring, which appears to be 2.5.6.SEC0

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-30 12:13

    I had the same problem. The solution was to create weblogic-application.xml into the META-INF folder of EAR project. Here is the code.

    
    
        
            org.apache.*
            org.springframework.*
        
    
    

    Maybe your problem is that you're using weblogic.xml into WAR project instead of weblogic-application.xml into EAR project.

    Hope it helps.

提交回复
热议问题