带条纹的简单应用程序配置

时间:2011-12-19 16:21:08

标签: web stripes

我正在使用Stripes。我只想添加一些参数,这些参数将在应用程序启动时用于某些配置。这样做最简单(或最好)的方法是什么?属性,web.xml还是什么?我搜索了条纹书(也是网站),但找不到明确的答案。

我通常使用appConfig.properties文件和一个这样的监听器类:

public class ConfigLoader implements  javax.servlet.ServletContextListener {

public void contextInitialized(ServletContextEvent sce) {
    Properties properties = System.getProperties();
    properties.put(sce, sce);
    try {
        properties.load(this.getClass().getResourceAsStream("appConfig.properties"));
        System.out.println(this.getClass().getResource("").getFile());

    } catch (IOException ex) {
        throw new ExceptionAdapter(ex);
    }        
}

public void contextDestroyed(ServletContextEvent sce) {
    throw new UnsupportedOperationException("Not supported yet.");
}

}

1 个答案:

答案 0 :(得分:3)

关于Stripes的好处是除了它的小小的绑定世界之外,它没有大的足迹。所以你可以做任何你想做的事。如果您对appConfig.properties感到满意,那么一定要继续使用它。