如果我创建如下属性文件:
<util:properties id="appProps" location="classpath:app-config.properties" scope="singleton"/>
在我的应用程序代码中作为类级对象
private static Properties props=null;
在我的方法中:
props=(Properties)context.getBean("appProps").
如果我对该方法进行 100 次调用,将创建多少个对象。如果它创建了signle对象,那么将props对象设为静态是否有用?
问候,
拉朱