NoClassDefFoundError in spring

后端 未结 2 853
长情又很酷
长情又很酷 2021-01-22 01:24

I wrote a Spring application which runs on Weblogic 10.3. In this application I have some JMS Queue consumers.

Sometimes I got an error when the application is closing

2条回答
  •  失恋的感觉
    2021-01-22 02:29

    It's all very well that you have this class in your war, but in Weblogic, the war has its own classloader. Since your stack trace shows a JMS listener, I'd ask: where is the listener? If it's in the war, then you have a mystery. But it sure looks as though it's somewhere else, and it's that somewhere else that would be missing this Spring class.

提交回复
热议问题