0

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

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

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

4

1 回答 1

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 捆绑包的安装顺序。

于 2012-11-10T22:56:44.930 回答