摘要:
1、form表单提交date数据 form表单提交的date数据要在接收的字段上加入@DateTimeFormat注解 @DateTimeFormat(pattern = "yyyy MM dd HH:mm:ss") private Date createdAt; 2、后端传递date数据 2.1 阅读全文
摘要:
1、HandlerExceptionResolver实现 1.1实现HandlerExceptionResolver接口 public class GlobalHandlerExceptionResolver implements HandlerExceptionResolver { private 阅读全文