参考代码如下:
com.atguigu.struts2.app.converters.DateConverter.java |
public DateFormat getDateFormat(){ if(dateFormat == null){ //获取当前 WEB 应用的初始化参数 pattern(该参数在WEB-INF下的web.xml文件中) //第一次用的时候获取,并加载相关的信息 //这种方法是使用/struts2-6/src/xwork-conversion.properties配置文件 //xwork-conversion.properties配置文件的内容: //java.util.Date=com.atguigu.struts2.app.converters.DateConverter ServletContext servletContext = ServletActionContext.getServletContext(); System.out.println(servletContext); String pattern = servletContext.getInitParameter("pattern"); dateFormat = new SimpleDateFormat(pattern); } return dateFormat; } |
原文地址:http://blog.csdn.net/zhongwen7710/article/details/38052739