jhipster和ZonedDateTime

时间:2017-09-10 17:11:47

标签: mysql jhipster zoneddatetime

当我坚持使用ZonedDateTime时,区域信息才会被释放。

    ZonedDateTime now = ZonedDateTime.now(ZoneId.of("America/Santo_Domingo"));
    ZonedDateTime firstMomentInMonth = now.withDayOfMonth(1).truncatedTo(ChronoUnit.DAYS);
    ZonedDateTime lastMomentInMonth = now.withDayOfMonth(now.toLocalDate().lengthOfMonth()).truncatedTo(ChronoUnit.DAYS).with(LocalTime.of(23, 59, 59, 999999999));

    log.debug("firstMomentInMonth =  {}", firstMomentInMonth);
    log.debug("lastMomentInMonth = {}", lastMomentInMonth);
    ledger = new Ledger();
    ledger.setStartDate(firstMomentInMonth);
    ledger.setEndDate(lastMomentInMonth);
    return ledgerRepository.save(ledger);

日志的输出:

  firstMomentInMonth =  2017-09-01T00:00-04:00[America/Santo_Domingo]
  lastMomentInMonth = 2017-09-30T23:59:59.999999999-04:00[America/Santo_Domingo]

在MySql Workbemnch中:

 '6', '2017-09-01 00:00:00', '2017-09-30 23:59:59', 'OPEN', NULL, '1', '3'

,在Workbench中,您可以看到区域信息刚刚放电。 我发现应用程序在heroku上进行生产时,服务器位于另一个时区,而不是用户。一些发现者回来的结果不对。

来自ledger.json:

"fields": [
    {
        "fieldName": "startDate",
        "fieldType": "ZonedDateTime"
    },
    {
        "fieldName": "endDate",
        "fieldType": "ZonedDateTime"
    },

我做错了吗?

1 个答案:

答案 0 :(得分:0)

MySQL中的时间戳没有区域信息。因此,在其上部署应用程序的服务器的区域信息很重要。使用服务器的区域信息,将在db中保存的时间创建为java中的dateTime。

对于从客户端到服务器的日期,还应包含区域信息,例如“ +04:00”。

对于heroku,您应该找到一种设置Java应用程序区域的方法。您可以使用系统属性进行设置。也许heroku提供了一种设置方法。