码迷,mamicode.com
首页 > Web开发 > 详细

在idea的maven项目使用el或jstl表达式

时间:2015-05-02 18:03:57      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

必须加上这句:

<%@ page isELIgnored="false" %>

否则无法解析el或jstl表达式

 

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page isELIgnored="false" %>

<table>
    <table width="%80" border="1" height="56">
        <tr align="center">
            <td>用户名</td>
            <td>用户密码</td>
            <td>用户年龄</td>
        </tr>

        <c:forEach var="users" items="${userList}">
            <tr align="center">
                <td>${users.username }</td>
                <td>${users.password }</td>
                <td>${users.age }</td>
            </tr>
        </c:forEach>
    </table>

 

在idea的maven项目使用el或jstl表达式

标签:

原文地址:http://www.cnblogs.com/balfish/p/4472134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!