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

如何获得(读取)web.xml配置文件的參数

时间:2017-07-24 21:29:43      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:fill   http   action   term   article   pat   pad   lsp   ble   

技术分享

參考代码例如以下:

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配置文件的參数

标签:fill   http   action   term   article   pat   pad   lsp   ble   

原文地址:http://www.cnblogs.com/yutingliuyl/p/7230810.html

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