标签: java jpa orm
我想将实体类Lecture映射到表LECTURE,其中两列 - from和until - 表示时间戳。我想将这些时间戳映射到startInclusive的{{1}}和endInclusive。
Lecture
LECTURE
from
until
startInclusive
endInclusive
我考虑过为此目的使用@Embeddable或自定义对象映射器,但我不确定它是否运行良好,因为https://jsfiddle.net/qaeed/u20hujev/16/在实例化后是不可变的。
https://jsfiddle.net/qaeed/u20hujev/16/
有人可以建议最佳做法吗?