002 Servlet 第一个程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了002 Servlet 第一个程序相关的知识,希望对你有一定的参考价值。
1. 创建一个JavaWEB项目
2. 新建一个Java类,让这个类继承javax.servlet.http.HttpServlet.
3. 在重写doGet和doPost方法
4. 在doGet或者doPost中编写业务代码
5. 在web.xml中注册Servlet
import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class ServletDemo extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { } @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }
1 <servlet> 2 <servlet-name>servletDemo</servlet-name> 3 <servlet-class>com.qc.airquality.web.ServletDemo</servlet-class> 4 </servlet> 5 <servlet-mapping> 6 <servlet-name>servletDemo</servlet-name> 7 <url-pattern>/servletAction</url-pattern> 8 </servlet-mapping>
以上是关于002 Servlet 第一个程序的主要内容,如果未能解决你的问题,请参考以下文章
002servlet生命周期以及有关servlet的各种知识