码迷,mamicode.com
首页 > 其他好文 > 详细

AbstractAction

时间:2018-02-07 19:25:54      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:admin   允许   tac   post   data   body   port   ini   自定义   

package cn.tz.action.abs;

import java.text.SimpleDateFormat;

import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;

/**
 * 专门抽取action中公有的属性或方法
 * @author admin
 *
 */
public abstract class AbstractAction {
	
	
	/**
	 * 用来转换日期格式的
	 * @param binder
	 */
	@InitBinder
	public void initBinder(WebDataBinder binder){
		SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		//本方法的处理指的是追加一个自定义的转换编辑器,如果遇见的操作目标类型为java.util.Date类
		//则使用定义好的SimpleDateFormat类来进行格式化处理,并且允许此参数的内容为空
		binder.registerCustomEditor(java.util.Date.class, new CustomDateEditor(sdf, true));
		
	}

}

  

AbstractAction

标签:admin   允许   tac   post   data   body   port   ini   自定义   

原文地址:https://www.cnblogs.com/yuefeng123/p/8427563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!