当前位置:   article > 正文

使用 IntelliJ IDEA创建Servlet 项目_intellij idea 2022.3.1 写一个servlet

intellij idea 2022.3.1 写一个servlet

使用 IntelliJ IDEA 创建 Servlet 项目

0x1、新建一个 Web Application 项目

0x2 设置项目名称:ServletPro

0x3 新建一个servlet文件:HelloWorld


0x4 添加依赖的 Tomcat 下的 Servlet 库



选择Tomcat下的servlet-api包。

0x5 编写HelloWorld.java代码

import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.*;
import javax.servlet.http.*;
 
 
public class HelloWorld extends HttpServlet {
 
    private String message;
 
    public void init() throws ServletException
    {
        // 初始化
        message = "Hello, First Servlet!";
    }
 
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 
    }
 
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // 设置:响应内容类型
        response.setContentType("text/html");
 
        // 输出文本
        PrintWriter out = response.getWriter();
        out.write("<h1> " + message + " </h1>");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

0x6 编写web.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <servlet>
        <servlet-name>HelloWorld</servlet-name>
        <servlet-class>HelloWorld</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>HelloWorld</servlet-name>
        <url-pattern>/demo</url-pattern>
    </servlet-mapping>
</web-app>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

0x7 部署 Tomcat ,并调试运行

详见Mac IDEA开发JavaWeb一文中为项目配置Tomcat

0x8 调试运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/860740
推荐阅读
相关标签
  

闽ICP备14008679号