[java]代码库
package am_cn.itcast.servlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* 入门的 servlet 程序 :
* 1.写一个类 继承 httpservlet
* 2. 重写了 其 doGet, doPost方法
* 3. 在doGet 或者 doPost 输出了一点数据
* 4. 在web.xml 文件中 对 写的servlet 进行了 映射 (注册, 映射).
*
*
* @author Administrator
*
*/
public class HelloServlet extends HttpServlet{
@Override
public void init() throws ServletException {
}
// 重写 doGet 以及 doPost 方法
// 当请求 方式 是 get 时 会 被调用
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.getWriter().print("hello , good morning ....");
}
// 当请求 方式 是 post 时 会 被调用
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
}
}