slyak / spring-data-jpa-extra

spring data jpa with template dynamic query (eg: freemarker,velocity etc.) like mybatis. The master branch already support springboot2+ spring5+
Apache License 2.0
400 stars 116 forks source link

查询条件中如果有LocalDate,或者LocalDateTime会搜索不出数据 #9

Open okjesse opened 7 years ago

okjesse commented 7 years ago

jpa中添加Jsr310JpaConverters配置可以,这里代码不知道如何实现

stormning commented 7 years ago

目前直接利用LocalDate或LocalDateTime查询还不支持 暂时可以在freemarker模板中,将LocalDateTime进行格式转换再比较

stormning commented 7 years ago

后续会考虑加上各种格式转换支持(包括之前有朋友提到的Clob字段等),尽量兼容所有JPA已有的特性(因为VO里没有描述属性和查询结果字段之间的关系,所以新版本要考虑怎么适配比较合适,且不增加使用复杂度)