OSGi包读取配置属性

时间:2012-05-03 08:16:12

标签: spring osgi

我的OSGi包中有config.properties。但是OSGi包无法读取它。

Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=dao, config=osgibundle:/META-INF/spring/*.xml))
org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException

我使用Spring来阅读config.properties

<bean id="propertyConfigurer"
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="config.properties" />
</bean>

似乎OSGi只读取.xml文件。     有人有任何想法吗?

1 个答案:

答案 0 :(得分:3)

您必须为value属性指定正确的资源。 有一些built in implementations,如:

  • ClassPathResource:value="classpath:/META-INF/config.properties"
  • FileSystemResource:value="file:C:/foobar/config.properties"

如果要将文件放在库外,可以使用系统属性(例如-DpropertyFile=C:/loremIpsum/config.properties)来指定路径,例如

value="file:${propertyFile}"

从Spring 3.0开始。?即使有默认值

value="file:${propertyFile:C:/foobar/config.properties}"

看一下你的OSGi框架,了解如何设置系统属性。我也不确定ClassPathResource是否运行良好/在OSGi环境中是推荐的。