美文网首页
spring boot 中把mvc传递的String字符串参数转

spring boot 中把mvc传递的String字符串参数转

作者: java修炼 | 来源:发表于2018-04-24 11:24 被阅读0次

    从前台页面传递数据到后台的过程中,发现date属性的值为空;找了几篇文章讲的都太复杂,经过测试,添加DateTimeFormat即可成功把把mvc传递的String字符串参数转化为Date日期

    @DateTimeFormat(pattern="yyyy-MM-dd")
    private Date postDate;
    

    相关文章

      网友评论

          本文标题:spring boot 中把mvc传递的String字符串参数转

          本文链接:https://www.haomeiwen.com/subject/hkgdlftx.html