我想知道如何访问共享下的属性文件,稍后java class (under alfresco)
将作为..jar
alfresco/lib
问问题
538 次
1 回答
1
正如此Alfresco 论坛帖子中所报道的,您应该在您的上下文中注册一个 Spring bean,利用PropertyPlaceholderConfigurer
,设置您的属性文件的正确位置。
<bean id="custom-properties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders">
<value>true</value>
</property>
<property name="locations">
<list>
<value>classpath:alfresco/extension/custom.properties</value>
</list>
</property>
</bean>
从现在开始,每次定义 bean 时,您都可以使用从具有通用key=value
格式的属性文件中获取的占位符。
于 2015-04-03T14:24:44.593 回答