gpt4 book ai didi

java - OSGI HttpService 无法正确初始化/注入(inject)

转载 作者:太空宇宙 更新时间:2023-11-04 06:51:10 26 4
gpt4 key购买 nike

我想在我的 OSGI 项目中为我的 servlet 使用声明性服务功能。详细信息:用户可以在主应用程序上手动安装模块,选择一些 *.jar 文件,主应用程序嵌入了 OSGI 服务器,当 OSGI 模块被激活时,它应该针对某些请求进行注册例如这样:

protected void startup() {
MyServlet servlet = new MyServlet();
if (httpService != null) {
httpService.registerServlet("/req", servlet, null, null); **//OK!**
}
}

不幸的是,我无法初始化 httpService 实例,这就是问题所在。以下是有问题的 servlet 模块代码 list :

@Component(name="app", immediate=true)
@Service(value=App.class)
public class App {
@Reference(name = "httpService", referenceInterface = HttpService.class, bind = "bindHttpService", unbind = "unbindHttpService")
private HttpService httpService;

@Activate
protected void startup() {
MyServlet servlet = new MyServlet();
if (httpService != null) {
httpService.registerServlet("/req", servlet, null, null);
//OK!
} else {
//Not OK!
}
}

protected void bindHttpService(HttpService httpService) {
this.httpService = httpService;
}

protected void unbindHttpService(HttpService httpService) {
this.httpService = null;
}
// some more code.........
}

Maven捆绑插件设置pom.xml代码

<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>app</Bundle-SymbolicName>
<Embed-Dependency>!org.osgi.core</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Import-Package>
<![CDATA[
org.osgi*,
com.mynamespace
]]>
</Import-Package>
</instructions>
</configuration>
</plugin>

这里是主应用程序上嵌入式 OSGI 服务器的简化代码:

public static void main(String[] args) 
{
FrameworkFactory frameworkFactory = ServiceLoader.load(FrameworkFactory.class).iterator().next();
Map<String, String> config = new HashMap<String, String>();
config.put(Constants.FRAMEWORK_STORAGE_CLEAN, "onFirstInit");
config.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, "javax.microedition.io");
Framework framework = frameworkFactory.newFramework(config);
framework.start();
BundleContext context = framework.getBundleContext();
List<Bundle> installedBundles = new LinkedList<Bundle>();
// install prerequisites
installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.util_1.0.500.v20130404-1337.jar"));
installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.osgi.services_3.4.0.v20131120-1328.jar"));
installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.ds_1.4.200.v20131126-2331.jar"));
//install servlet module
installedBundles.add(context.installBundle("file:///MY_PATH\\app.jar"));
for (Bundle bundle : installedBundles) {
bundle.start();
}
}

我的灵感来自 Peter Fries 博客 ( http://www.peterfriese.de/osgi-servlets-flexibility-by-simplicity/ ) 的示例,但我无法初始化 httpService 实例。甚至只有当 @Reference 注解被删除或被注释覆盖时,App 模块才能启动,否则模块将不会被激活。

我怀疑我的嵌入式 OSGI 没有某些必需的模块,但无法获取有关它的详细信息 - 日志控制台没有说什么。

更新

感谢巴拉兹的提示!
我的错误有:
0.当<Embed-Dependency>!org.osgi.core</Embed-Dependency>声明httpService不能通过@Reference注解自动绑定(bind),所以bind = "bindHttpService", unbind = "unbindHttpService"是没用的。我删除了<Embed-Dependency>声明,它有助于绑定(bind) httpService,就像我想要的那样(通过 bindHttpService)。

  1. 在 OSGI 服务器上安装 bundle 之前,应指定 jetty 设置:

    System.setProperty("jetty.port","8080");
    System.setProperty("jetty.home.bundle", "org.eclipse.jetty.osgi.boot");

  2. 在我的例子中,嵌入式 OSGI 服务器上必须安装太多 jars

    //强制 bundle installedBundles.add(context.installBundle("file:///MY_PATH\org.eclipse.equinox.util_1.0.500.v20130404-1337.jar")); installBundles.add(context.installBundle("file:///MY_PATH\org.eclipse.equinox.ds_1.4.200.v20131126-2331.jar"));installBundles.add(context.installBundle("file:///MY_PATH\org.eclipse.osgi.services_3.4.0.v20131120-1328.jar"));installBundles.add(context.installBundle("file:///MY_PATH\javax.servlet-api-3.0.1.jar"));

            // Container bundles
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.security_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.servlet_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.continuation_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.server_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.util_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.io_8.1.12.v20130726.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.jetty.http_8.1.12.v20130726.jar"));

    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.http.servlet_1.1.400.v20130418-1354.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.http.jetty_3.0.200.v20131021-1843.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.http.servletbridge_1.0.300.v20130327-1442.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.servletbridge_1.3.0.v20130927-1541.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.common_3.6.200.v20130402-1505.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.registry_3.5.400.v20130717-1325.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.eclipse.equinox.http.registry_1.1.300.v20130402-1529.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\org.osgi.service.obr-1.0.2.jar"));

    // Service bundles
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-httpservice-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\ow2-httpservice-1.2-spec-1.0.0.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-osgi-boot-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-deploy-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-webapp-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-security-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-http-8.0.4.v20111024.jar"));
    installedBundles.add(context.installBundle("file:///MY_PATH\\jetty-xml-8.0.4.v20111024.jar"));

    // Finally, required OSGI bundle
    installedBundles.add(context.installBundle("file:///MY_PATH\\app.jar"));

通过这些更改,我有了一个初始化的 httpService 对象,现在我想注册我的 servlet 实例

@Activate
protected void startup() {
MyServlet servlet = new MyServlet();
if (httpService != null) {
System.out.println("Greetings! I just want to be sure that service isn't null!")
//httpService.registerServlet("/req", servlet, null, null); // BAD PLACE
} else {
System.out.println("Something goes wrong")
}
}

上面的代码片段将显示“Greetings”消息,但如果我尝试注册 servlet 并取消注释“BAD PLACE”,则不会显示该消息,什么也没有发生。异常也是无法捕获的;看起来“启动”方法被忽略了。任何想法出了什么问题吗?

最佳答案

我没有看到您添加任何包含任何 servlet 容器(jetty 或 tomcat)的 bundle 。我也没有在您的列表中看到包含 HttpService 实现的包。

如果您需要一个工作示例,请参阅依赖项 here在“具有 HTTP 服务的 Jetty”部分下。如果您将这些依赖项及其依赖项传递导入,您将拥有一个带有 HttpService 的 Jetty 服务器。在示例中,依赖项被注释掉,因为它们仅在开发时使用。请注意,您必须按照定义以下系统属性的方式启动嵌入式 servlet 容器:

jetty.port=8080
jetty.home.bundle=org.eclipse.jetty.osgi.boot

如果您通过 Google 搜索,您可以找到 Tomcat 或 Jetty 的其他 bundle 集。

关于java - OSGI HttpService 无法正确初始化/注入(inject),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23290506/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com