AbstractAction

Posted yuefeng123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AbstractAction相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

C++使用模板类调用非静态成员函数

GUI按键绑定到键盘和打印组件

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?