1.@JsonFormat解决时间格式不规范
数据库返回的数据:
在Bean类中设置:@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
修改后返回的数据:
2.BeanUtils.copyProperties无法复制date类型
user对象和formBean对象都有属性birthday,而且都是java.sql.Date类型的
当进行BeanUtils.copyProperties(user,formBean);复制属性时候,formBean中属性birthday为null
2.1手动添加数据:
2.2导入import org.dozer.Mapper
在pom配置
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer</artifactId>
<version>5.5.1</version>
</dependency>
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer-spring</artifactId>
<version>5.5.1</version>
</dependency>
3.Mapper中报Could not autowire. No beans of 'UserMapper' type found.
在配置中把这个Autowiring for Bean Class选项取消