Spring数据休息,url param中的java.util.Date?

时间:2015-10-08 10:34:46

标签: java spring rest

我有一个名为Check的简单POJO。我有一个简单的休息库:

@RepositoryRestResource(collectionResourceRel = "check",path = "check")
public interface RestCheckRepo
        extends JpaRepository<Check,Integer> {

    public List<Check> findByShopName(@Param("shop") String shop);

    public List<Check> findByDateTime(@Param("dt")Date dt);

    public List<Check> findByShopNameAndDateTime(@Param("shop")String shop, @Param("dt")Date dt);

    public List<Check> findByShopNameAndDateTimeBetween(@Param("shopName") String shop,
                                                        @Param("start")Date t1,
                                                        @Param("end") Date t2);


}

一切正常!!但我不知道如何使用java.util.Date作为@RequestParam来实现请求处理程序。 示例:http://localhost:8080/check/search/findByDateTime?dt= {value}

更新 请求 http://localhost:8080/check/search/findByDateTime?dt=2015-08-10T13:47:30 ---&GT;响应:

{
    "cause": {
        "cause":null,
        "message":null
    },
    "message":"Failed to convert from type java.lang.String to type @org.springframework.data.repository.query.Param java.util.Date for value '2015-10-07T15:04:46Z'; nested exception is java.lang.IllegalArgumentException"
}

2 个答案:

答案 0 :(得分:13)

@kucing_terbang的解决方案将起作用,否则有一个更简单的解决方案,你需要这样做:

public List<Check> findByShopNameAndDateTime(
    @Param("shop")String shop, 
    @DateTimeFormat(your-format-comes-here)@Param("dt")Date dt);

答案 1 :(得分:2)

您可以注册自定义编辑器,以便spring能够将参数传递给参数。示例

@InitBinder
public void dataBinding(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
    dateFormat.setLenient(false);
    binder.registerCustomEditor(Date.class, "dob", new CustomDateEditor(dateFormat, true));
}