博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决:springmvc中接收date数据问题
阅读量:5077 次
发布时间:2019-06-12

本文共 1564 字,大约阅读时间需要 5 分钟。

这里提供三种解决方案。 

一.局部转换 :只是对当前Controller类有效

springMVC.xml中添加:

  
Controller 类文件中添加:
@Controller@RequestMapping("/image")public class ImageController {        @Autowired    private ImageService imageService;        @org.springframework.web.bind.annotation.InitBinder    public void InitBinder(WebDataBinder binder){        DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        CustomDateEditor dateEditor = new CustomDateEditor(df, true);        binder.registerCustomEditor(Date.class,dateEditor);    }

 

二.全局转换

1.创建convertDate类实现WebBindingInitializer接口

public class convertDate implements WebBindingInitializer{     @Override    public void initBinder(WebDataBinder binder, WebRequest request) {        // TODO Auto-generated method stub        //转换日期        DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));    }}

2.在Spring-MVC.xml中配置日期转换

 

三.实体类属性方法配置 

@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")//接受前台的时间格式 传到后台的格式    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")//作用:后台的时间 格式化 发送到前台    private Date date;

 

@JsonFormat 默认是标准时区的时间, 北京时间 东八区 timezone=”GMT+8” 

作用:后台的时间 格式化 发送到前台

@DateTimeFormat 接受前台的时间格式 传到后台的格式

 

转载于:https://www.cnblogs.com/zhaoyanhaoBlog/p/9379231.html

你可能感兴趣的文章
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
[ZJOI2007]棋盘制作 【最大同色矩形】
查看>>
IOS-图片操作集合
查看>>
模板统计LA 4670 Dominating Patterns
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
session如何保存在专门的StateServer服务器中
查看>>
react展示数据
查看>>
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>