日期格式化注解(@DateTimeFormat)

在Spring MVC框架中 时间 类型的数据无法自动绑定,需要
在bien的日期属性用@DateTimeFormat注解

joda-time-2.9.9.jar


      joda-time
      joda-time
      2.9.9
    
@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;

你可能感兴趣的:(ssm框架)