第一个 JSP +玻璃鱼应用程序
我很初学者,我尝试制作JSP应用程序HelloWorld,非常简单,就像这里的youtube视频http://www.youtube.com/watch?v=m_33ZHYCjf8&feature=lated,几乎没有改变任何东西
但在我的电脑上我什至无法启动这个简单的HelloWorld 应用程序出现错误“未找到:在此服务器上未找到请求的 URL /HelloWorld/”
我使用 Windows 7、Netbeans 6.9.1 和 Glassfish v.3。
在 WEB-INF 目录中,我只有这样的 sun-web.xml:
<sun-web-app error-url="">
<context-root>/HelloWorld</context-root>
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</sun-web-app>
请您指导我,这个问题可以连接什么以及我可以检查什么,所有答案将不胜感激。
I'm very beginner, I tried to make JSP application HelloWorld, very simple like on the youtube video here http://www.youtube.com/watch?v=m_33ZHYCjf8&feature=related, without changing almost anything
But on my computer I can't even start this simple HelloWorld application getting the error "Not found: The requested URL /HelloWorld/ was not found on this server"
I use Windows 7, Netbeans 6.9.1 and Glassfish v.3.
In WEB-INF directory I have only sun-web.xml like this:
<sun-web-app error-url="">
<context-root>/HelloWorld</context-root>
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</sun-web-app>
Please, can you direct me, what with this problem could be connected and what I can check, all the answers will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您的
sun-web.xml
,URL 应该类似于yourhost/SayHello
而不是yourhost/HelloWorld
。Given your
sun-web.xml
, the URL should be something likeyourhost/SayHello
and notyourhost/HelloWorld
.