为什么不对呢?

为什么不对呢?

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 Jstlc
 */
@WebServlet("/js")
public class Jstlc extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public Jstlc() {
        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("set", 5);
		request.getRequestDispatcher("/jstl.jsp").forward(request, response);
	   }

}
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
   <%@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>
   <c:if test="${set>0&&(set<=10)}">
      <h2 style="color:blue;">1-10之间的整数</h2>
   </c:if>
   <c:if test="${set>10&&(set<=20)}">
      <h2 style="color:red">10-20之间的整数</h2>
   </c:if>
</body>
</html>

http://img1.sycdn.imooc.com//climg/5d89bf1a09df6ef208410279.jpg

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

2回答
提问者 慕田峪1061482 2019-09-25 14:03:37

为什么我自己编写servlet程序时,那个映射地址没有显示出来,而跟着老师视频写servlet的时候映射地址才会显示出来?

  • 同学你好,是上面贴出代码里的映射地址没有显示出来吗,上面代码,老师测试映射地址是可以出来的呐,同学自己编写servlet程序时,注意代码的正确性后,映射地址也是可以正确显示的呐。不过现在同学先跟着老师视频来手写代码,熟悉代码也是一种学习方式呐。如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~
    2019-09-25 15:39:02
好帮手慕小班 2019-09-24 15:49:17

同学你好,1、复制运行贴出代码,并没有出现404错误,所以这里是否是同学的项目名书写错误呐?

http://img1.sycdn.imooc.com//climg/5d89c97609aabee005420175.jpg

    2、根据题目要求,  在JSP文件的Java脚本<%  %>中,将变量x存储到request作用域中,x的值为5,所以这里建议将 request.setAttribute的赋值写在jsp页面中的Java脚本中,例如:

http://img1.sycdn.imooc.com//climg/5d89ca79098d36f505750334.jpg

如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师