Conversion not supported for type java.time.LocalDateTime报错

 使Jackson和Mybatis支持JSR310标准

1、添加额外的依赖

        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-typehandlers-jsr310</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-jsr310</artifactId>
            <version>2.9.2</version>
        </dependency>

2、至此,Po类中的域,可以用LocalDate来映射数据库中的date类型字段了,可以用LocalTime来映射数据库中的time类型字段了,可以用LocalDateTime字段来映射数据库中的datetime类型字段了

3、为LocalDate/LocalTime/LocalDateTime类型的私用域添加@JsonFormat主键,如下所示

public class TimeEntity {

    private Integer id;

    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDate date_field;

    @JsonFormat(pattern = "HH:mm:ss")
    private LocalTime time_field;

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime datetime_field;

    // Getters and setters ignore.
}
至此,这些私有域会被转化成一个类似   'time_field' : '12:01:00'这样格式,而不是'time_field' : {.....}这样的格式
上一篇:简单制作通用Excel导出工具


下一篇:flutter 1.升级2.X在模型类中序列化JSON报错Non-nullable instance field 'title' must be initialized.