- 经典 报错 404 大概率 就是 这图 的 路径 写错i了
package com.yanyu;import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;public class Demo extends HttpServlet {// 继承 HttpServlet H S// ctrl o
/*
* 1.不需要写 main () main () 方法 tomcat 服务器 自动 写好了 包括 创建 servlet 对象
* 2. 直接重写 父类 HttpServlet 的 方法 ,然后 在 重写的 方法里面 写代码
* 3. 注意 : 这里 重写的 父类 HttpServlet 的 方法 每一个方法 都 相当于 一个 main ()
* 4. 重写 父类 方法 ,在 重写的 方法里 ,调方法 返回 对象 ,然后 利用 返回的 对象 继续 调用方法
* 5. new 对象 调用方法
*
* */@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// 设置相应 的内容 wei text / htmlresponse.setContentType("text/html");
// 响应的不该尼玛格式request.setCharacterEncoding("utf-8");
// 获取 响应 对象PrintWriter out = response.getWriter();// 通过 方法 来 获取 对象// out.println(); 打印 的 东西 是 指打印到 浏览器 的out.println("123546gbfdjgvbj");System.out.println("hello");// 打印 到 服务器 的 控制台}
}