Java 8 LocalDate mapping with mybatis

前端 未结 4 1857
终归单人心
终归单人心 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:23

    You should just define the entire class name:

    resultType="java.time.LocalDate"
    

提交回复
热议问题