Java教程

后台日期类型数据接收到前端数据后报Failed to convert value of type 'java.lang.String' to required type '

本文主要是介绍后台日期类型数据接收到前端数据后报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 '的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!