码迷,mamicode.com
首页 > Web开发 > 详细

怎样获得(读取)web.xml配置文件的参数

时间:2014-07-22 23:46:07      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:web.xml   应用   

bubuko.com,布布扣

参考代码如下:

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;

    }

 

 

怎样获得(读取)web.xml配置文件的参数

标签:web.xml   应用   

原文地址:http://blog.csdn.net/zhongwen7710/article/details/38052739

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