我有以下配置
@Configuration
@EnableMongoRepositories(basePackages = Constants.DATA_SCAN)
@EnableMongoAuditing(auditorAwareRef = "auditorAwareService")
@Import(value = MongoAutoConfiguration.class)
public class DatabaseConfiguration {
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
return new ValidatingMongoEventListener(validator());
}
@Bean
public LocalValidatorFactoryBean validator() {
return new LocalValidatorFactoryBean();
}
@Bean
public CustomConversions customConversions() {
final List<Converter<?, ?>> converters = new ArrayList<>();
converters.add(DateToZonedDateTimeConverter.INSTANCE);
converters.add(ZonedDateTimeToDateConverter.INSTANCE);
return new CustomConversions(converters);
}
}
我添加了自定义转换器,但我仍然得到:
在实体类java.time.ZonedDateTime上找不到属性null来将构造函数参数绑定到!
@Document(collection = "user")
public class User implements Serializable {
private static final long serialVersionUID = 1L;
@Id
private String id;
@Field("reset_date")
private ZonedDateTime resetDate = null;
}
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.1.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
public final class JSRConverters {
private JSRConverters() {}
public static class ZonedDateTimeToDateConverter implements Converter<ZonedDateTime, Date> {
public static final ZonedDateTimeToDateConverter INSTANCE = new ZonedDateTimeToDateConverter();
private ZonedDateTimeToDateConverter() {}
@Override
public Date convert(final ZonedDateTime source) {
return source == null ? null : Date.from(source.toInstant());
}
}
public static class DateToZonedDateTimeConverter implements Converter<Date, ZonedDateTime> {
public static final DateToZonedDateTimeConverter INSTANCE = new DateToZonedDateTimeConverter();
private DateToZonedDateTimeConverter() {}
@Override
public ZonedDateTime convert(final Date source) {
return source == null ? null : ZonedDateTime.ofInstant(source.toInstant(), ZoneId.systemDefault());
}
}
}
答案 0 :(得分:1)
我有相同的设置工作,但使用org.springframework.data.mongodb.core.convert。 MongoCustomConversions 而不是org.springframework.data.mongodb.core.convert。 CustomConversions 强>
@Bean
public MongoCustomConversions customConversions() {
final List<Converter> converters = new ArrayList<>();
converters.add(new ZonedDateTimeFromDateConverter());
converters.add(new ZonedDateTimeToDateConverter());
return new MongoCustomConversions(converters);
}
和另一个提示,mongo以UTC(https://docs.mongodb.com/manual/reference/method/Date/)的形式返回日期,这意味着你将获得UTC时间而不是你的ZoneId.systemDefault()。我的解串器看起来像这样:
private static final ZoneId DEFAULT_ZONE_READ = ZoneId.of("UTC");
public static class ZonedDateTimeFromDateConverter implements Converter<Date, ZonedDateTime> {
@Override
public ZonedDateTime convert(Date date) {
return date.toInstant().atZone(DEFAULT_ZONE_READ);
}
}