美文网首页
thymeleaf获取当前时间并格式化输出

thymeleaf获取当前时间并格式化输出

作者: FlyXhc | 来源:发表于2018-04-28 11:16 被阅读524次

    有时候会需要在模板中直接打印时间的需求,如果输出一个时间还需要在java类中去获取model的话,那未免也太麻烦了,以下为thymeleaf在模板中直接获取时间戳并格式化输的代码
    获取时间戳

    <p th:text="${new java.util.Date().getTime()}"></p>
    

    格式化时间

    [[${#dates.format(new java.util.Date().getTime(), 'yyyy-MM-dd hh:mm:ss')}]]
    

    注:[[${}]]这种格式为内联,你也可以使用th:text="${}"
    以上为直接在thymeleaf中获取时间戳和格式化时间输入的实例

    相关文章

      网友评论

          本文标题:thymeleaf获取当前时间并格式化输出

          本文链接:https://www.haomeiwen.com/subject/eyxglftx.html