How to format an inbox @RequestParamusing annotations? The form sends the date in the format MM / DD / YYYY, and the controller does not select it as valid Date.
@RequestMapping(params="/updateDate")
public @ResponseBody String updateDate(HttpServletRequest request
, @RequestParam Integer productId
, @RequestParam Date dateReceived) {
}
user4778174
source
share