简单 J2EE 应用程序的 websphere 服务器 FileNotFoundException
我在运行一个非常基本的 J2EE 应用程序时遇到了 FileNotFoundException
。 我正在使用 IBM RAD 和 websphere。
java.io.FileNotFoundException:JSPG0036E:找不到资源/test/hello.jsp
at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.findWrapper(AbstractJSPExtensionProcessor.java:293)
at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:266)
at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)
关于此问题有什么想法吗?
I got FileNotFoundException
while running a very basic J2EE application.
I am using IBM RAD and websphere.
java.io.FileNotFoundException: JSPG0036E: Failed to find resource /test/hello.jsp
at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.findWrapper(AbstractJSPExtensionProcessor.java:293)
at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionProcessor.handleRequest(AbstractJSPExtensionProcessor.java:266)
at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3129)
Any idea regarding this isuue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您提供的信息是否足够,您所说的运行web项目是什么意思?您是否点击了 url /test/hello.jsp?您是否检查过此文件是否存在于您的应用程序 war/ear 中(以及正确的位置,即 Web 内容文件夹)?您可以通过进入WAS Web控制台并检查应用程序状态来检查部署是否成功吗?
I am not sure if the information you provided is sufficient enough, what do you mean by running the web project? Are you hitting the url /test/hello.jsp? have you checked if this file is present in you application war/ear ( and in the correct location i.e. web content folder) ? Can you check wether you deployment is sucessful by going to the WAS web console and checking the application status?