Tomcat 设置问题
我正在尝试运行我在网上找到的一个简单的 JAX-WS 示例。所以我想在Windows XP下使用Eclipse Helios 32位作为Web服务器来设置Tomcat 7。
我记得我必须将我的应用程序作为资源添加到 Tomcat 服务器,但没有任何内容作为要添加的资源。我只有该应用程序的 WS-Server 和 WS-Client 项目。
我之前已经这样做过,检查了 server.xml 并看到 http 1.1 端口是 8080,但是当我在 eclipse 下启动 Tomcat 时,我收到以下 url 的 404 错误: http://localhost:8080/,所以 Tomcat 并没有真正正常运行。
我在这里缺少什么?
谢谢!
I'm trying to run a simple JAX-WS example I found on the web. So I wanted to setup Tomcat 7 under windows xp using Eclipse Helios 32 bit as the web server.
I remembered I had to have my app added as a resource to the Tomcat server, but nothing is coming up as a resource to add. I just have WS-Server and WS-Client projects for the app.
I've done this before, checked the server.xml and see http 1.1 port is 8080, but when I start up Tomcat under eclipse I'm getting a 404 error with this url: http://localhost:8080/, so Tomcat isn't really running properly.
What am I missing here?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您收到 404 - 这意味着 Web 服务器正在运行。这可能意味着您没有任何内容映射到指定的路径(没有 servlet/默认网页/等)。
创建一个 servlet 并将其添加到您的 web.xml 中或定义一个主页 html 文件。
仅供参考,如果您使用“动态 Web 项目”设置;其中大部分都是为您完成的。 这是一个 YouTube 视频,当我需要查看如何设置快速链接时,我总是默认观看该视频eclipse 中的 tomcat 实例。
If you're getting a 404 - that means the web server is running. This likely means you don't have anything mapped to the path specified (no servlets/default web page/etc).
Either make a servlet and add it to your web.xml or define a home page html file.
FYI, if you use the "Dynamic Web Project" setup; most of this is done for you. Here is a youtube video I always default to when I need to get a review on how to set up a quick tomcat instance in eclipse.