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

2021/9/14 20:35:07

本文主要是介绍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' : {.....}这样的格式


这篇关于Conversion not supported for type java.time.LocalDateTime报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程