JSP页面中出现的问题:javax.el.PropertyNotFoundException

1. 后台返回到JSP前台的的list,在jsp页面使用EL表达式遍历时出现如下问题:javax.el.PropertyNotFoundException: Property 'ID' not found on type java.lang.String

2. ID在是int类型。需要在jsp页面把ID转为String类型。

3. 转换的方法为:${item[fn:trim(u.id)]}

 

需要在页面引入:

<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>

 

 

El表达式将int转String

${item[fn:trim(s.index)]}

 

 

El表达式判断是否为空字符串

${empty 值}  返回true ,表示为空字符串;

e.g    

  

 

El表达式判断是否为空

${值 eq  null } 返回true 的话,表示为空

 

posted @ 2018-05-15 16:08  tatic  阅读(176)  评论(0编辑  收藏  举报