如何获得(读取)web.xml配置文件的參数
Posted yutingliuyl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获得(读取)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; } |
以上是关于如何获得(读取)web.xml配置文件的參数的主要内容,如果未能解决你的问题,请参考以下文章
java web项目 web.xml中如何读取properties配置文件中的值?