• 后台返回model里的时间格式,用@JsonFormat是没用的,它只有在返回JSON数据的时候生效,我脑抽了


    返回model的数据,可以这样做:

    在实体类里添加一个格式时间的方法:

      public String formateTime(Date date) {
            SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd");
            return df.format(date);
    
        }
    
    

    然后在页面中使用:

        <tr  th:each="course:${courseList}">
                                <td scope="row" th:text="${course.id}">id</td>
                                <td th:text="${course.name}">空空如也</td>
                                <td th:text="${course.formateTime(course.startTime)}">startTime</td>
                                <td th:text="${course.formateTime(course.endTime)}">endTime</td>
                            </tr>
    
    

    如上course.formateTime(course.startTime)}
    效果如图:

  • 相关阅读:
    2016第17周四
    2016第17周三
    2016第17周二
    OSGI框架学习
    2016年第16周日
    2016第16周六
    如何培养技术洞见力
    2016第15周四
    深入浅出ClassLoader
    Linux智能小开关rfkill
  • 原文地址:https://www.cnblogs.com/famine/p/12463250.html
Copyright © 2020-2023  润新知