JSTL LocalDateTime格式

时间:2016-02-24 15:44:49

标签: jsp jstl date-format java-time

我想在" dd.MM.yyyy "中格式化我的java 8 LocalDateTime对象。图案。有格式的库吗?我尝试了下面的代码,但得到了转换异常。

<fmt:parseDate value="${date}" pattern="yyyy-MM-dd" var="parsedDate" type="date" />

JSTL中是否有LocalDateTime类的标记或转换器?

5 个答案:

答案 0 :(得分:16)

在14岁的JSTL中不存在。

您最好的选择是创建自定义EL功能。首先创建一个实用方法。

package com.example;

public final class Dates {
     private Dates() {}

     public static String formatLocalDateTime(LocalDateTime localDateTime, String pattern) {
         return localDateTime.format(DateTimeFormatter.ofPattern(pattern));
     }
}

然后创建一个/WEB-INF/functions.tld,其中您将实用程序方法注册为EL函数:

<?xml version="1.0" encoding="UTF-8" ?>
<taglib 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd"
    version="2.1">

    <tlib-version>1.0</tlib-version>
    <short-name>Custom_Functions</short-name>
    <uri>http://example.com/functions</uri>

    <function>
        <name>formatLocalDateTime</name>
        <function-class>com.example.Dates</function-class>
        <function-signature>java.lang.String formatLocalDateTime(java.time.LocalDateTime, java.lang.String)</function-signature>
    </function>
</taglib>

最后使用如下:

<%@taglib uri="http://example.com/functions" prefix="f" %>

<p>Date is: ${f:formatLocalDateTime(date, 'dd.MM.yyyy')}</p>

必要时扩展方法以获取Locale参数。

答案 1 :(得分:8)

实际上我遇到了同样的问题,并最终分配了原始的Joda Time jsp标签以创建Java 8 java.time JSP tags

使用该库,您的示例将是这样的:

<javatime:parseLocalDateTime value="${date}" pattern="yyyy-MM-dd" var="parsedDate" />

检查存储库以获取安装说明:https://github.com/sargue/java-time-jsptags

答案 2 :(得分:4)

不,LocalDateTime不存在。

但是,您可以使用:

typeof()

答案 3 :(得分:4)

这是我的解决方案(我正在使用Spring MVC)。

在控制器中添加一个SimpleDateFormat,并将LocalDateTime模式作为模型属性:

model.addAttribute("localDateTimeFormat", new SimpleDateFormat("yyyy-MM-dd'T'hh:mm"));

然后在JSP中使用它来解析LocalDateTime并获取java.util.Date:

${localDateTimeFormat.parse(date)}

现在您可以使用JSTL解析它。

答案 4 :(得分:1)

我建议使用java.time.format.DateTimeFormatter。 首先将其导入JSP <%@ page import="java.time.format.DateTimeFormatter" %>,然后格式化变量${localDateTime.format( DateTimeFormatter.ofPattern("dd.MM.yyyy"))}。 作为Java开发的新手,我很感兴趣这种方法在“最佳实践”方面是否可以接受。