新手如何创建Servlet文件;
点file,new,project新建普通Java项目
取名为ServletTest(也可以自己自定义名字),点击create;
创建后如下:
右键项目,添加框架支持
找到Web Application,在前面打勾
点OK,之后就会出现一个web文件夹
右键WEB-INF,点new,创建一个Directory,命名为lib
将servlet-api.jar文件(可以在tomcat的lib文件夹中找到)复制到这个路径下
右键这个文件,添加到Library中
这样就可以了
在右上角找到这个配置tomcat
点击加号
找到Tomcat Server 里的Local
在Configure找到你的Tomcat路径,(如果有跟我一样的提示,直接点右边的Fix就可以,然后再点Apply,点OK)然后点OK
右键src,新建一个包,命名为Servlet
右键Servlet包,新建ServletTest类
输入以下代码
package servlet;import javax.servlet.ServletConfig;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 ServletTest extends HttpServlet { private static final long serialVersionUID = 1L; @Override public void init(ServletConfig config) throws ServletException { super.init(config); } @Override public void service(HttpServletRequest request, HttpServletResponse response) throws IOException { response.setContentType("text/html;charset=utf-8"); PrintWriter out=response.getWriter(); out.println(""); out.println("第一个Servlet类"); out.println(""); }}
点开web.xml,在
ServletTest servlet.ServletTest ServletTest /servletTest
点击运行按钮,进入下面这个页面
在网址后添加之前在web.xml中设置的
/servletTest
现在就成功运行啦
如果有操作不对的地方欢迎指正哦!!!
来源地址:https://blog.csdn.net/m0_56392863/article/details/126977087