嵌套异常是 java.lang.IllegalArgumentException:参数值 [2020-04-20] 与预期类型不匹配 [java.util.Date (n/a)]]
nested exception is java.lang.IllegalArgumentException: Parameter value [2020-04-20] did not match expected type [java.util.Date (n/a)]]
我想发送这个请求
http://localhost:8080/{url}?start=2020-04-20&end=2020-04-24&status=success&status=failed
在事务模型中
private java.sql.Timestamp addedOn;
我正在尝试为这个博客之后的多个过滤器创建一个动态查询:
https://attacomsian.com/blog/spring-data-jpa-specifications
Specs.java 文件 toPredicate 方法
if (criteria.getOperation().equals(SearchOperation.GREATER_THAN)) {
predicates.add(builder.greaterThan(
root.get(criteria.getKey()), criteria.getValue().toString()));
} else if (criteria.getOperation().equals(SearchOperation.LESS_THAN)) {
predicates.add(builder.lessThan(
root.get(criteria.getKey()), criteria.getValue().toString()));
}
这是我的控制器代码
Timestamp start = new Timestamp(dateFormat.parse(request.getParameter("start")).getTime());
Timestamp end = new Timestamp(dateFormat.parse(request.getParameter("end")).getTime());
Specs txnSpecs = new Specs();
txnSpecs.add(new SearchCriteria("addedon", start, SearchOperation.GREATER_THAN_EQUAL));
txnSpecs.add(new SearchCriteria("addedon", end, SearchOperation.LESS_THAN_EQUAL));
txnSpecs.add(new SearchCriteria("status", Arrays.asList(request_params.get("status")), SearchOperation.IN));
List<Transaction> txnList = transactionRepository.findAll(txnSpecs);
return txnList;
但是当我提出请求时,我得到:
nested exception is java.lang.IllegalArgumentException: Parameter value [2020-04-20] did not match expected type [java.util.Date (n/a)]]
在将日期值作为参数发送给 SQL 查询之前,是否需要转换日期值?或者我需要使用其他类型的日期?
检查您的日期格式是否符合您值的模式:yyyy-MM-dd :
DateFormat dateFormat = new SimpleDateFormat ("yyyy-MM-dd");
Do I need to convert the Date
value before I send it as param for the SQL query?
不,恰恰相反,您必须将其保留为 Date
但您通过调用 criteria.getValue().toString()
.
将其转换为字符串
我想发送这个请求 http://localhost:8080/{url}?start=2020-04-20&end=2020-04-24&status=success&status=failed
在事务模型中
private java.sql.Timestamp addedOn;
我正在尝试为这个博客之后的多个过滤器创建一个动态查询: https://attacomsian.com/blog/spring-data-jpa-specifications
Specs.java 文件 toPredicate 方法
if (criteria.getOperation().equals(SearchOperation.GREATER_THAN)) {
predicates.add(builder.greaterThan(
root.get(criteria.getKey()), criteria.getValue().toString()));
} else if (criteria.getOperation().equals(SearchOperation.LESS_THAN)) {
predicates.add(builder.lessThan(
root.get(criteria.getKey()), criteria.getValue().toString()));
}
这是我的控制器代码
Timestamp start = new Timestamp(dateFormat.parse(request.getParameter("start")).getTime());
Timestamp end = new Timestamp(dateFormat.parse(request.getParameter("end")).getTime());
Specs txnSpecs = new Specs();
txnSpecs.add(new SearchCriteria("addedon", start, SearchOperation.GREATER_THAN_EQUAL));
txnSpecs.add(new SearchCriteria("addedon", end, SearchOperation.LESS_THAN_EQUAL));
txnSpecs.add(new SearchCriteria("status", Arrays.asList(request_params.get("status")), SearchOperation.IN));
List<Transaction> txnList = transactionRepository.findAll(txnSpecs);
return txnList;
但是当我提出请求时,我得到:
nested exception is java.lang.IllegalArgumentException: Parameter value [2020-04-20] did not match expected type [java.util.Date (n/a)]]
在将日期值作为参数发送给 SQL 查询之前,是否需要转换日期值?或者我需要使用其他类型的日期?
检查您的日期格式是否符合您值的模式:yyyy-MM-dd :
DateFormat dateFormat = new SimpleDateFormat ("yyyy-MM-dd");
Do I need to convert the
Date
value before I send it as param for the SQL query?
不,恰恰相反,您必须将其保留为 Date
但您通过调用 criteria.getValue().toString()
.