使用Spring-DM Extender

时间:2012-08-07 14:09:57

标签: java spring eclipse-virgo spring-dm osgi-fragment

我需要等待一段时间才能关闭我的OSGI上下文。(花一些时间来完成当前正在运行的任务)。我在shutdown.wait.time bean中遇到了extenderProperties属性。

任何人都可以告诉我如何使用这个OSGi片段来实现我的目标?我想我可以将一个片段包附加到我现有的OSGI包中。

提前致谢。感谢你的帮助。

1 个答案:

答案 0 :(得分:5)

你需要创建一个包含两个文件的包:META-INF / MANIFEST.MF和META-INF / spring / extender / extender.xml(xml文件可以用xml扩展名命名,但是必须在META-INF / spring / extender文件夹中)。您的MANIFEST.MF文件需要包含 org.springframework.osgi.extender 的OSGi清单标题 Fragment-Host 。如果您使用的是maven-bundle-plugin,那么您的插件配置将如下所示:

...
<plugin>
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
  <version>2.3.5</version>
  <extensions>true</extensions>
  <configuration>
    <instructions>
      <Fragment-Host>org.springframework.osgi.extender</Fragment-Host>
    </instructions>
  </configuration>
</plugin>
...

您的extender.xml文件需要定义一个名为 extenderProperties java.util.Properties bean。它应该包含一个名为shutdown.wait.time的属性,其值以毫秒为单位(例如,30000,持续30秒)。该文件可能如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:util="http://www.springframework.org/schema/util"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context     http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util     http://www.springframework.org/schema/util/spring-util-3.0.xsd">
  <util:properties id="extenderProperties">
    <prop key="shutdown.wait.time">30000</prop>
  </util:properties>
</beans>

然后将捆绑包部署到您的环境中。您可能需要重新启动Spring OSGi包(或您的服务器),具体取决于此片段包相对于Spring DM包的安装顺序。