我正在使用@CreatedDate
spring data mongodb 的注释插入数据。
一般来说,这非常有用,但我有时想在任意时间插入带有指定 createTime 的数据。
但是,在@CreatedDate
存在注释的字段中createTime
,我指定的将被忽略,并且正在当前时间插入数据。
在@CreatedDate
字段上的注解无法移除的情况下,如何将它放在我想要的时间而不是当前时间?
我正在使用@CreatedDate
spring data mongodb 的注释插入数据。
一般来说,这非常有用,但我有时想在任意时间插入带有指定 createTime 的数据。
但是,在@CreatedDate
存在注释的字段中createTime
,我指定的将被忽略,并且正在当前时间插入数据。
在@CreatedDate
字段上的注解无法移除的情况下,如何将它放在我想要的时间而不是当前时间?