jstl c:remove

简介: jstl c:remove
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSTL c:remove的使用</title>
</head>
<body bgcolor="#ffffff">
  <c:set value="10000" var="maxUser" scope="application"/>
  <c:set value="20" var="maxIdelTime" scope="session"/>
  <c:set value="hellking" var="accountId" scope="request"/>
  <c:set value="next.jsp" var="nextPage" scope="page"/>
  在没有调用c:remove之前,有这些参数;
  maxUser=<c:out value="${maxUser }"/>
  maxIdelTime=<c:out value="${maxIdelTime }"/>
  accountId=<c:out value="${accountId }"/>
  nextPage=<c:out value="${nextPage }"/>
  <hr/>调用c:remove...
  <c:remove var="maxUser" scope="application"/>
  <c:remove var="maxIdelTime" scope="session"/>
  <c:remove var="accountId" scope="request"/>
  <c:remove var="nextPage" scope="page"/>
  调用了c:remove之后,这些参数值为:
  maxUser=<c:out value="${maxUser}"></c:out>
  maxIdelTime=<c:out value="${maxIdelTime }"></c:out>
  accountId=<c:out value="${accountId }"></c:out>
  nextPage=<c:out value="${nextPage }"/>
</body>
</html>
<c:set>设置变量属性的值;
<c:out>输出属性的值;
<c:remvoe>删除前面设置的属性;
目录
相关文章
|
6月前
|
Java
JDK version和class file version对应关系
JDK version和class file version对应关系
|
7月前
|
Java
JSTL jar包版本错误attribute items does not accept any expressions
确保你在 `items` 属性中使用了一个实际的集合或数组变量,而不是表达式,以解决这个问题。
60 0
|
7月前
|
Java API Maven
maven中scope和optional区别
maven中scope和optional区别
104 1
|
7月前
|
Java Spring
spring-doc报错Unable to render this definition
spring-doc报错Unable to render this definition
460 0
|
Java
jsp JSTL之foreach
在JSP中借助c:forEach标签,可以改善可读性。
106 0
springSecurity报错:Cannot pass a null GrantedAuthority collection
springSecurity报错:Cannot pass a null GrantedAuthority collection
216 0
SpringBoot——Thymeleaf中使用th:each遍历数组、List、Map
SpringBoot——Thymeleaf中使用th:each遍历数组、List、Map
1396 0
SpringBoot——Thymeleaf中使用th:each遍历数组、List、Map
|
XML SQL JavaScript
JavaWeb - JSTL、EL 表达式
JavaWeb - JSTL、EL 表达式
217 0
JavaWeb - JSTL、EL 表达式
|
Java 测试技术 数据库连接
Maven中optional和scope元素的使用,你弄明白了?
Maven中optional和scope元素的使用,你弄明白了?
743 0
Maven中optional和scope元素的使用,你弄明白了?
Idea中导入依赖报Element ‘dependency‘ cannot have character [children]
Idea中导入依赖报Element ‘dependency‘ cannot have character [children]
292 0