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">
<!--修改 默认主页-->
<welcome-file-list>
<welcome-file>/html/frame.html</welcome-file>
</welcome-file-list>
<!--servlet声明-->
<servlet>
<servlet-name>studentServlet</servlet-name>
<servlet-class>com.itheima.servlet.StudentServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>studentServlet</servlet-name>
<url-pattern>/studentServlet</url-pattern>
</servlet-mapping>
</web-app>package com.itheima.servlet;
import javax.servlet.*;
import java.io.IOException;
public class StudentServlet implements Servlet {
public void init(ServletConfig servletConfig) throws ServletException {
}
public ServletConfig getServletConfig() {
return null;
}
/*所有客户端请求经过service方法*/
public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException {
System.out.println("这是我第一个servlet案例");
}
public String getServletInfo() {
return null;
}
public void destroy() {
}
}

该文章展示了一个web.xml配置文件的内容,包括设置默认主页为/html/frame.html和声明一个名为studentServlet的Servlet,该Servlet实现类为com.itheima.servlet.StudentServlet。StudentServlet中的service方法处理客户端请求,输出文字这是我第一个servlet案例。
2301

被折叠的 条评论
为什么被折叠?



