Caused By: java.lang.NoClassDefFoundError: org/apache/log4j/Logger

后端 未结 8 1273
醉酒成梦
醉酒成梦 2020-12-02 22:31

I\'ve got an interesting problem in which the org.apache.log4j.Logger class is not found during runtime. I\'m trying to get authorized and that is where it\'s failing:

8条回答
  •  醉酒成梦
    2020-12-02 22:39

    Had the same problem, it was indeed caused by weblogic stupidly using its own opensaml implementation. To solve it, you have to tell it to load classes from WEB-INF/lib for this package in weblogic.xml:

        
            org.opensaml.*
        
    

    maybe true would work too.

提交回复
热议问题