WebSphere ClassNotFoundException with deployed dynamic web project

后端 未结 2 1372
栀梦
栀梦 2021-01-13 15:14

Problem

I am currently experiencing a ClassNotFoundException with a deployed EAR (with OpenFaces web project) on WebSphere 7.0 application server. The EAR deploys

相关标签:
2条回答
  • 2021-01-13 16:02

    I think your classpath is wrong.

    Under WEB-INF/classes, check these folders >> org/openfaces/demo/services and then check the class MenuItem inside the last directory Services.

    Regards,

    0 讨论(0)
  • 2021-01-13 16:16

    Found the source of the problem. The commons-digester.jar needed to be in WEB-INF/lib so that it was able to find the MenuItem class since the EAR classpath doesn't have visibility to the web classpath.

    0 讨论(0)
提交回复
热议问题