在SpringMVC中对Date的处理

@DateTimeFormat(pattern = "yyyy-MM-dd") private Date beginDate; 如果对象中有Date类型,希望在前后台之间自动地格式转化,加上以上标注就可以了。 但是,需要注意的是,如果你使用maven的话,还得加以下的依赖: [codesyntax lang="xml"]
<dependency>
	<groupId>joda-time</groupId>
	<artifactId>joda-time</artifactId>
	<version>2.6</version>
</dependency>
[/codesyntax]

你可能感兴趣的:(annotation,Date,springmv)