无法正常访问Servlet
8080可以访问 但是 不能访问http://localhost:8080/FirstServlet/hi?name=tom
package test1;
import java.io.IOException;
import java.io.PrintWriter;
import javax.security.auth.message.callback.PrivateKeyCallback.Request;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Lab01_FirstServlet extends HttpServlet{
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
String name=req.getParameter("NAME");//接收请求发来的参数
String html="<h1 style='color:red'>hi,"+ name +"!</h1><hr>";
System.out.println("返回给浏览器的相应数据为"+html);
PrintWriter out=resp.getWriter();
out.println(html);//将html返回给浏览器
}
}
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0">
<display-name>T1Web</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<!-- 声明Servlet -->
<servlet>
<!-- servlet的别名,自定义,什么名字都可以 -->
<servlet-name>FirstServlet</servlet-name>
<servlet-class>test1.Lab01_FirstServlet</servlet-class>
</servlet>
<!-- 将Servlet与Url绑定 -->
<servlet-mapping>
<servlet-name>FirstServlet</servlet-name>
<url-pattern>/hi</url-pattern>
</servlet-mapping>
</web-app>
正在回答
同学你好,1、根据问答中的描述,请求的url访问地址为http://localhost:8080/FirstServlet/hi?name=tom 项目名称为FirstServlet,但是根据贴出目录截图,项目名称为T1Web
如上所示,同学可以检查一下对应的项目名称,修改为当前的项目名称再试试,比如:http://localhost:8080/T1Web/hi?name=tom
2、老师测试贴出代码,可以正常访问,比如:
如果我的回答解决了你的疑惑,请采纳,祝学习愉快~
- 参与学习 人
- 提交作业 676 份
- 解答问题 9666 个
本阶段将从前端网页搭建入手,到Java Web基础,前后端结合助你完成Java Web小白的蜕变!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星