SpringMvc接收⽇期参数
1.Controller⽅法通过@DateTimeFormat注解来接收参数
@RequestParam("startTime") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") Date startTime
2.设置InitBinder接收参数1
@InitBinder public void initBinderQuery(WebDataBinder binder) {
3.设置InitBinder接收参数2
传⼊值?query.startTime=2020-04-23
@InitBinder("query")
public void initBinderQuery(WebDataBinder binder) {
}
4. 在参数接收实体上注解
springmvc的注解有哪些直接在属性上加@DateTimeFormat注解,就可以进⾏转化⽇期格式
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date creatDate ;
public Date getCreatDate() {
return creatDate;
}
public void setCreatDate(Date creatDate) {
}
.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论