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


参考代码如下:

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;

    }

 

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。