Tomcat搭建java服务器

2021-07-07  本文已影响0人  Faner_NG

一 、提前准备

  1. 下载安装JDK
  2. 下载tomcat 直接解压,bin目录startup.sh,即可启动,浏览器输入http://localhost:8080等显示tomcat主页及代表成功
  3. intellij idea 旗舰版,社区版不带web模块

二、使用IDEA创建web项目

1. 创建一个Empty project

2. 空项目中 添加一个java模块 流程如下:

3. 添加一个web模块

此时可以通过http://localhost:8080/xxx/访问你项目中html,资源等

4. 支持Servlet (用于web处理参数)

@WebServlet("/login")
public class LoginServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doPost(req,resp);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        System.out.println(username+"_"+password);
        if ("111".equals(username)&&"222".equals(password)){
            resp.getWriter().write("Login Success !!!");
        }else {
            resp.getWriter().write("Login Failure!!!");
        }
    }
}

@WebServlet("/login")用来说明这个类是用来处理哪个路径的请求,例如http://localhost:8080/hello/login?username=111&password=222

上一篇下一篇

猜你喜欢

热点阅读