码迷,mamicode.com
首页 > 其他好文 > 详细

使用IDEA创建servlet

时间:2019-12-17 18:27:04      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:tty   pat   protected   his   ati   www   schema   width   odi   

第一步,新建web项目。

技术图片

 

 技术图片

 

完成之后

技术图片

 

 

第二步,在web/WEB-INF目录下新建两个文件夹,classes用于存放servlet的字节码文件(.class),lib用于存放项目引用的包。

 技术图片

 

 第三步,点击View—>Open Module Settings,进入Modules(IDEA的工程)选项卡,将Paths的两个输出路径均改成第2步新建的classes。

技术图片

 

 技术图片

 

 第四步,然后点击Dependencies,选择右边+号,新建JARS路径,选择第2步创建的lib文件夹。

 技术图片

 

 技术图片

 

 第五步,进入Artifacts选项卡,将输出目录定为Tomcat安装位置的webapps下新建的该工程文件夹。

技术图片

 

第六步,点击Run->Edit Configurations配置Tomcat,一般已经默认配好。

 技术图片

 

 第七步,将WEB资源名定好,也可以是“/”,为空。

技术图片

 

 第八步,src下新建servlet。

技术图片

 

第九步,配置好web.xml,<servlet-class>指明servlet的编译出的字节码在哪个包下,<url-pattern>是servlet的资源名

 

<?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>shoppingservlet</servlet-name>

        <servlet-class>com.cyl.shoppingservlet</servlet-class>

    </servlet>

    <servlet-mapping>

        <servlet-name>shoppingservlet</servlet-name>

        <url-pattern>/A</url-pattern>

    </servlet-mapping>
</web-app>

第十步,编写servlet

package com.cyl;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;

@WebServlet(name = "shoppingservlet")
public class shoppingservlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request,response);
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("text/html");

        PrintWriter out=response.getWriter();

        out.println("this is servlet");
    }
}

技术图片

 

使用IDEA创建servlet

标签:tty   pat   protected   his   ati   www   schema   width   odi   

原文地址:https://www.cnblogs.com/TaoYuanJieYi/p/12055596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!