jstl的fmt:formatDate标签和el表达式

jstl 类型转换问题和el表达式获取不了后端返回值

 

错误提示1:类型不能被转换

HTTP Status 500 - Unable to convert string "${item.items_creattime }" 
to class "java.util.Date" for attribute "value": 
Property Editor not registered with the PropertyEditorManager

错误提示2:值不能显示到页面

 

解决方法

jsp页面

jstl引入

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

forEach编写


    
        
        ${item.items_name }
        ${item.items_price }
        
        ${item.items_detail }
        修改
        删除
    

web.xml

修改前

jstl的fmt:formatDate标签和el表达式_第1张图片

修改后

因为Tomcat的支持web.xml 的Servlet是 2.5版本

 

测试结果

jstl的fmt:formatDate标签和el表达式_第2张图片

注意:数据仅用于案例测试,不做其他性质考虑。

 

你可能感兴趣的:(后端)