JSTL是哪里出了问题?
package com.imooc.jstl;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class JstlServlet
*/
@WebServlet("/jstl")
public class JstlServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public JstlServlet() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setAttribute("score", 58);
request.setAttribute("grade", "E");
request.getRequestDispatcher("/core.jsp").forward(request, response);
}
}
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!-- 在Java或者JSP文件中输入ALT+/ 可出现智能提示 -->
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>${requestScope.score}</h1>
<c:if test = "${score >= 60 }">
<h1 style = "color:green">恭喜,你已通过测试</h1>
</c:if>
<c:if test = "${score < 60 }">
<h1 style = "color:red">对不起,再接再厉</h1>
</c:if>
</body>
</html>
chrome:
正常路径:http://localhost:8080/jstl/jstl/core.jsp
但是在:http://localhost:8080/jstl/core.jsp
Tomcat正常但是没有输出JSTL
Tomcat文件路径:
问题出在哪里?
Mac环境eclipse4.10.0+jdk1.8u192+Tomcat8.5
正在回答
同学你好,同学的代码没有问题,但是访问的路径有问题。正常的访问应该是将工程添加到tomcat并启动后,在地址栏输入:http://localhost:8080/jstl/jstl,然后从Servlet页面调转到core.jsp页面,而不是直接访问core.jsp。同学修改一下访问路径再试试。
如果我的回答解决了你的疑惑,请采纳。祝:学习愉快!
- 参与学习 人
- 提交作业 1088 份
- 解答问题 10205 个
如果你有Java语言基础,又想以后从事Java Web开发,那么本路径是你的不二选择!本路径从网页搭建开始入手,通过大量案例来学习Java Web基础。定能助你完成Java Web小白的蜕变!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星