Struts2 中的 ClassNotFoundException 示例
我正在运行一个简单的 Struts 2 示例。
当我使用 eclipse 运行项目时,出现以下异常:
java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
之前我使用了 Struts 2.2 lib,然后使用了 Struts 2.0 libs,但找不到任何解决方案。
I am running a simple Struts 2 example.
When I run the project using eclipse, I got this exception:
java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
Earlier I used Struts 2.2 lib then Struts 2.0 libs, but could not find any solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的类路径中需要 struts2-core 库。
You need struts2-core library in your classpath.
有时,在项目中包含 jar 不起作用。所以你必须将这些 jar 添加到服务器 lib 文件夹中,该文件夹可能是你的 tomcat。
当您使用 tomcat 服务器运行应用程序时,它找不到所需的 jar。
因此,您必须通过 tomcat lib 文件夹将这些 jar 直接提供给 tomcat。
Sometimes including the jars in project does not work. so you have to add those jar in your server lib folder which could be your tomcat.
when you run your application using tomcat server it do not found the required jar.
so you have to provide those jars directly to the tomcat by tomcat lib folder.