后台日期类型数据接收到前端数据后报Failed to convert value of type 'java.lang.String' to required type '
2021/7/15 17:09:03
本文主要是介绍后台日期类型数据接收到前端数据后报Failed to convert value of type 'java.lang.String' to required type ',对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
三种解决办法:
解决方法一:
在接收的字段上面,添加下面的注解 就可以了
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") //返回时间类型 @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") //接收时间类型 private Date startTime;
解决方法二(局部解决方法):
@Controller
public class UserController{
@RequestMapping(value="/xxxxxxx") public String recive(Date startTime){ ********* return ""; } //只需要加上下面这段即可,注意不能忘记注解 @InitBinder public void initBinder(WebDataBinder binder, WebRequest request) { //转换日期 DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd"); //到日 binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));// CustomDateEditor为自定义日期编辑器 }
}
解决方法三(全局解决方法):
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.support.WebBindingInitializer;
import org.springframework.web.context.request.WebRequest;
public class CustomDate implements WebBindingInitializer{ @Override public void initBinder(WebDataBinder binder, WebRequest request) { // TODO Auto-generated method stub //转换日期 DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //到时分秒 binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); } }
这篇关于后台日期类型数据接收到前端数据后报Failed to convert value of type 'java.lang.String' to required type '的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-05并查集详解与实现教程
- 2024-11-05大厂数据结构与算法入门指南
- 2024-11-05大厂算法与数据结构入门指南
- 2024-11-05二叉树入门教程:轻松掌握基础概念与操作
- 2024-11-05红黑树入门教程:从零开始理解红黑树
- 2024-11-05初学者必备:链表基础知识详解
- 2024-11-05平衡树入门教程:理解、构建与应用
- 2024-11-05数据结构入门教程:轻松掌握基础知识
- 2024-11-05数据结构与算法入门教程
- 2024-11-05优先队列入门教程:理解与实现