我正在为 Web 开发人员运行 Eclipse Java EE IDE。版本:Juno Service Release 1 我有 TomCat 7
我有一个依赖于其他项目的动态 Web 项目。
以前我可以通过 Eclipse 启动 Tomcat 服务器并在 Debug 模式下运行,以便在网站在本地运行时单步执行代码。最近,对于我所依赖的项目中的类,我收到了类未找到错误。
Aug 22, 2013 11:32:33 AM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [default] in context with path [/JaM-Execution] threw exception [Filter execution threw an exception] with root cause
java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
at com.medplus.data.factory.DAOFactory.<clinit>(DAOFactory.java:38)
at com.medplus.struts2.action.LoginAction.prepare(LoginAction.java:50)
我可以将项目构建成一个战争并将其放在我的本地 webapps 文件夹中,它运行良好。我确保其他项目在我的 pom.xml 文件中列为依赖项。我已经离开并回到这个问题,但无法解决它。任何建议表示赞赏。