我使用的是弹簧3.2。
在网络方面,用户需要输入两个日期
我尝试像这样的服务器
http://localhost:8080/xxx/report/pendingBill?startDate=2004/01/02&endDate=2014/01/02
在服务器端,我有这个代码
@RequestMapping(value = "/pendingBill", method = { RequestMethod.GET })
@ResponseBody
public List<Bill> getPendingBill(Date startDate, Date endDate) {
...
}
我收到了这个错误
Failed to convert value of type 'java.lang.String' to required type 'java.util.Date'
我试着以不同的方式写日期,但我总是遇到同样的问题。
任何提示?