赞
踩
在Spring MVC框架中 时间 类型的数据无法自动绑定,需要
在bien的日期属性用@DateTimeFormat注解
joda-time-2.9.9.jar
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.9</version>
</dependency>
@Scope("prototype") //是否是单例注解,prototype:不是单例,singleton:单例,默认值 @Component public class Bbs_detail { private Integer id; private String title; private String picPath; private String author; @DateTimeFormat(pattern = "yyyy-MM-dd") private Date createDate; @DateTimeFormat(pattern = "yyyy-MM-dd") private Date modifyDate; private Integer accessCount;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。