当前位置:  开发笔记 > 编程语言 > 正文

有没有办法从Java Bean访问web.xml属性?

如何解决《有没有办法从JavaBean访问web.xml属性?》经验,为你挑选了1个好方法。

Servlet API中是否有任何方法可以从与Web容器完全无关的Bean或Factory类中访问web.xml中指定的属性(例如初始化参数)?

例如,我正在编写一个Factory类,我想在Factory中包含一些逻辑来检查文件和配置位置的层次结构,以查看哪些可用于确定实例化哪个实现类 - 例如,

    类路径中的属性文件,

    一个web.xml参数,

    系统属性,或

    一些默认逻辑,如果没有别的可用.

我希望能够在不注入任何引用ServletConfig或类似于我的工厂的任何内容的情况下执行此操作- 代码应该能够在Servlet容器之外运行.

这可能听起来有点不常见,但是我想要这个组件,我正在努力与我们的一个webapp一起打包,并且还具有足够的通用性,可以与我们的一些命令行工具一起打包需要一个新的属性文件只为我的组件 - 所以我希望捎带在其他配置文件,如web.xml.

如果我没记错的话,.NET有一些东西Request.GetCurrentRequest()可以获得对当前正在执行的引用Request- 但由于这是一个Java应用程序,我正在寻找可以用来访问的类似的东西ServletConfig.



1> toolkit..:

你可以这样做的一种方法是:

public class FactoryInitialisingServletContextListener implements ServletContextListener {

    public void contextDestroyed(ServletContextEvent event) {
    }

    public void contextInitialized(ServletContextEvent event) {
        Properties properties = new Properties();
        ServletContext servletContext = event.getServletContext();
        Enumeration keys = servletContext.getInitParameterNames();
        while (keys.hasMoreElements()) {
            String key = (String) keys.nextElement();
            String value = servletContext.getInitParameter(key);
            properties.setProperty(key, value);
        }
        Factory.setServletContextProperties(properties);
    }
}

public class Factory {

    static Properties _servletContextProperties = new Properties();

    public static void setServletContextProperties(Properties servletContextProperties) {
        _servletContextProperties = servletContextProperties;
    }
}

然后在您的web.xml中包含以下内容


    com.acme.FactoryInitialisingServletContextListener

如果您的应用程序在Web容器中运行,则在创建上下文后,容器将调用该侦听器.在这种情况下,_servletContextProperties将替换为web.xml中指定的任何context-params.

如果您的应用程序在Web容器外部运行,则_servletContextProperties将为空.

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有