JHipster JDL 中的 Instant 是什么?

What is an Instant in JHipster JDL?

我在哪里可以找到有关 JDL 中的瞬间的任何信息?它与日期格式有何关系...?

除此之外:https://www.jhipster.tech/jdl/

可用字段类型和约束 以下是 JDL 支持的类型:

SQL          MongoDB    Cassandra   Validations
Instant      Instant    Instant     required

LocalDate   LocalDate   required    required
ZonedDateTime   ZonedDateTime       required

谢谢

所有 JDL 数据类型都是 Java 类型。 因此,“即时”是指 Java“即时”,如 Java docs

中所述

An instantaneous point on the time-line.

This class models a single instantaneous point on the time-line. This might be used to record event time-stamps in the application.