Spring MVC使用jstl 標籤c:forEach 遍歷輸出雙層巢狀List的資料
具體操作步驟如下:
1、建立Controller。
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import com.mahaochen.springmvc.domain.Goods;
import com.mahaochen.springmvc.domain.Inventory;
@Controller
@RequestMapping("/shop")
public class ShoppingController {
@RequestMapping("/shoppingCart")
public String getShoppingCart(HttpServletRequest request, HttpServletResponse response,Model model){
model.addAttribute("list", generateData());
return "shoppingCart";
}
private List<Inventory> generateData(){
List<Inventory> inventories = new ArrayList<Inventory>();
for(int i=0 ; i<2 ; i++){
switch (i) {
case 0:
Inventory inventory1 = new Inventory();
inventory1.setInventoryType("水果");
List<Goods> goodsList1 = new ArrayList<Goods>();
for(int j=0;j<5;j++){
Goods goods = new Goods();
goods.setGoodsName("蘋果"+j);
goodsList1.add(goods);
}
inventory1.setGoodList(goodsList1);
inventories.add(inventory1);
break;
default:
Inventory inventory2 = new Inventory();
inventory2.setInventoryType("蔬菜");
List<Goods> goodsList2 = new ArrayList<Goods>();
for(int j=0;j<5;j++){
Goods goods = new Goods();
goods.setGoodsName("茄子"+j);
goodsList2.add(goods);
}
inventory2.setGoodList(goodsList2);
inventories.add(inventory2);
break;
}
}
return inventories;
}
}
2、建立對應的jsp頁面。
<%@ 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>購物車</title>
</head>
<body>
<c:forEach items="${list }" var="item">
${item.inventoryType}<br />
<c:set value="${item.goodList }" var="subItem"/>
<c:forEach items="${subItem }" var="var">
--${var.goodsName }<br />
</c:forEach>
</c:forEach>
</body>
</html>
注意事項:
JSTL1.1的庫 在JSP2.0(Servlet 2.4)及以後(推薦用JSTL1.1及以上)用:
<%@taglibprefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
</web-app>
在 Servlet2.3及以前,
<%@taglibprefix="c" uri="http://java.sun.com/jstl/core"%>
與2.4比較,以後版本路徑少了jsp。
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
</web-app>
不然會出現以下錯誤:
org.apache.jasper.JasperException:/WEB-INF/jsp/shoppingCart.jsp(line: 10, column: 1) According to TLD or attribute directive in tag file,attribute items does not accept any expressions
相關文章
- 利用c:forEach標籤遍歷陣列陣列
- jstl forEach遍歷JS
- 集合框架-集合的巢狀遍歷(多層巢狀)框架巢狀
- 集合框架-集合的巢狀遍歷(HashMap巢狀HashMap)框架巢狀HashMap
- 集合框架-集合的巢狀遍歷(HashMap巢狀ArrayList)框架巢狀HashMap
- 集合框架-集合的巢狀遍歷(ArrayList巢狀HashMap)框架巢狀HashMap
- 集合框架-集合的巢狀遍歷框架巢狀
- Jstl中標籤的使用JS
- 高效遍歷匹配Json資料,避免巢狀迴圈[轉]JSON巢狀
- Html 標籤的巢狀規則HTML巢狀
- html標籤的巢狀規則HTML巢狀
- HTML標籤巢狀規則HTML巢狀
- dom4j遍歷巢狀xml巢狀XML
- Mybatis動態Sql的Foreach遍歷拼接輸入引數中的List或陣列MyBatisSQL陣列
- JSTL標籤JS
- [work] python巢狀字典的遞迴遍歷Python巢狀遞迴
- 使用jstl無法遍歷bean中的集合JSBean
- Matlab對資料夾的層次遍歷和深度遍歷Matlab
- React中兩種遍歷資料的方法(map、forEach)React
- Android實現雙層ViewPager巢狀AndroidViewpager巢狀
- [JAVA] xml遍歷輸出JavaXML
- Mybatis的 foreach 標籤使用方法.MyBatis
- MyBatis學習——foreach標籤的使用MyBatis
- JSTL的標籤及使用,包含例項JS
- JSTL各個標籤的解析以及使用JS
- JSP中巢狀struts標籤的問題JS巢狀
- c++ 遍歷資料夾C++
- JSTL標籤工具類JS
- MyBatis foreach標籤MyBatis
- Mybatis系列:解決foreach標籤內list為空的問題MyBatis
- EL&JSTL26_JSTL標籤3JS
- jstl c標籤 ”test does not support runtime expressions“JSExpress
- thinkphp中volist的多重迴圈,標籤巢狀PHP巢狀
- ***PHP遍歷陣列的方法foreachPHP陣列
- python 利用 for ... else 跳出雙層巢狀迴圈Python巢狀
- list列表運算子,列表元素的遍歷,列表的方法,生成列表,巢狀的列表|python自學筆記(四)巢狀Python筆記
- Foreach巢狀Foreach速度慢優化方案巢狀優化
- 正則匹配閉合HTML標籤(支援巢狀)HTML巢狀