有些时候,<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>会报错,错误提示为: Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core" 主要原因是缺少 jstl.jar standard.jar 两个Jar包 如果还不行,请调整jstl.jar 版本,…
1.java代码 /** * 列表展示,隔行变色以及S标签的使用 * * @return */ public String list() { List<User> list = new ArrayList<>(); for (int i = 0; i < 11; i++) { User user = new User("JACK" + i, i); list.add(user); } ActionContext.getContext().put("…