Java 8 LocalDate mapping with mybatis

前端 未结 4 1874
终归单人心
终归单人心 2020-12-28 17:10

I am using java.time.LocalDate (Java 8) to represent some of the member fields in a Java class.

class Test{
    private LocalDate startDate;
    private Local         


        
4条回答
  •  执笔经年
    2020-12-28 17:31

    For my current project I've created mappers for Java 8 time API classes.

    You can see my implementation here jneat/mybatis-types

提交回复
热议问题