我正在使用弹簧。我有一个外部化的属性文件。我正在加载它,如下所示。
<context:property-placeholder location="file:///C:/some.properties"/>
现在如何将会话中的属性保留为键值对?
我尝试编写一个扩展 ServletContextListener 的侦听器。
public class Sample implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent event) {
//here i tried to get the values of properties file as below.
InputStream stream = event.getServletContext().getResourceAsStream("C:\\some.properties");
//But here stream is coming as null
}
}
我在这里错过了什么吗?
谢谢!