第一个 JSP +玻璃鱼应用程序

发布于 2024-12-01 23:27:34 字数 835 浏览 0 评论 0原文

我很初学者,我尝试制作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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清浅ˋ旧时光 2024-12-08 23:27:34

鉴于您的 sun-web.xml,URL 应该类似于 yourhost/SayHello不是 yourhost/HelloWorld

Given your sun-web.xml, the URL should be something like yourhost/SayHello and not yourhost/HelloWorld.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文