0x00 概述
在业务开发中,接手了一个前人开发的项目,项目中有一个实体类,对接的Mongo 在这个类中使用的是@Data注解以及@NoArgsConstructor 注解,在开发过程中,有一个createTime字段使用的是@CreatedDate 注解声明创建时间.并且该类中还有一个构造方法如下:
public RetryEntity(String id, RetryType retryType) {
this.id = id;
this.retryType = retryType;
}
0x01
在业务开发中发现, 通过对应的Service实现数据创建,在数据库中观察发现:
@CreatedDate无效,@LastModifiedDate却可以使用!
{
"_id" : "xxxxx",
"retryType" : "xxxx",
"lastRetryTime" : ISODate("2020-04-24T03:42:04.022Z"),
"maxRetryTimes" : 3,
"retryTimes" : 0,
"retryAgain" : true,
"_class" : "com.xxxx.xxx"
}
数据库中无相关的字段,于是进行排查,将创建时间类型由Date 改为long发现数据库内容如下:
{
"_id" : "xxxx",
"retryType" : "xxx",
"createTime" : NumberLong(0),
"lastRetryTime" : ISODate("2020-04-24T03:40:16.032Z"),
"maxRetryTimes" : 3,
"retryTimes" : 0,
"retryAgain" : true,
"_class" : "com.xxxx.xxx"
}
有字段但是该字段展示为0,猜想为默认值.
0x02 问题解决
在不断的尝试中,发现若自带Id,createdDate注解将会失效, 于是,添加上不带Id的构造方法:
public RetryEntity(RetryType retryType) {
this.retryType = retryType;
}
再进行相关的操作,注解产生正常,如下:
{
"_id" : ObjectId("5ea261e83a63886c35f7efb8"),
"retryType" : "xxxxx",
"createTime" : ISODate("2020-04-24T03:50:00.591Z"),
"lastRetryTime" : ISODate("2020-04-24T03:50:00.591Z"),
"maxRetryTimes" : 3,
"retryTimes" : 0,
"retryAgain" : true,
"_class" : "com.xxxx.xxxx"
}
总结: CreatedDate 注解在自定义Id的情况下会失效.