在tomcat 6.0中运行servlet程序
如何在 tomcat 6.0 中运行 servlet 程序?
How i can run a servlet program in tomcat 6.0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 tomcat 6.0 中运行 servlet 程序?
How i can run a servlet program in tomcat 6.0?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
首先,您需要在 Web 部署描述符(
web.xml
文件)中声明您的 servlet,如下所示:基本上,其想法是在
>servlet
元素并将其映射到servlet-mapping
中的 url 模式(映射是通过唯一的 servlet 名称完成的)然后,您需要打包整个(servlet < code>.class 文件和部署描述符)位于 Web 应用程序存档(带有
.war
扩展名)中,该存档具有已定义的结构:最后,将 .war 部署(复制)到Tomcat 的
webapps
目录。访问 servlet:其中:
First, you need to declare your servlet in a web deployment descriptor (a
web.xml
file) which looks like this:Basically, the idea is to declare the fully qualified name of your servlet in the
servlet
element and to map it to an url pattern in theservlet-mapping
(the mapping is done via a unique servlet name)Then, you need to package the whole (the servlet
.class
file and the deployment descriptor) in a web application archive (with a.war
extension) which has a defined structure:Finally, deploy (copy) the .war in the
webapps
directory of Tomcat. To access the servlet:Where:
通过构建一个 web 应用程序并将其放入 web 应用程序根目录中,就像在另一个版本的 tomcat 或任何其他 servlet 容器中一样。
By building a webapp and putting it into the webapp root, just as you would in another version of tomcat or any other servlet container.