OSGi web应用程序未运行



我想弄清楚如何实现一个web应用程序包。为了做到这一点,我按照本教程中的说明创建了一个小样本。war文件可以部署和启动,但我无法调用任何url。

war文件的结构;

+ meta - inf
,,,,,,,。MF
+ - inf
,,,,,,,类/
,,,,,,,,,,,,,,, fancyfoods/web/SayHello.class
,,,,,,,,,,,,,,, web . xml
index . html


我试着打电话给
localhost: 8080/
localhost: 8080/fancyfoods.web/index . html
localhost: 8080/fancyfoods.web SayHello
但我总是得到"HTTP ERROR 404"



我不知道怎么了。我需要更多的bundle来运行web应用程序吗?

最好的方面







你好,

谢谢你的回复,很抱歉我的答案放错了地方(我是Stack Overflow的新手)。我从零开始创建了一个新的wab示例,但它仍然不起作用。为了测试http服务是否正常工作,我首先实现了另一个包(不是WAB),其中包含一个servlet和一个OSGi-Component,该组件注册了servlet和静态资源。而且很有效!我可以调用html和servlet。

现在回到我的理财问题。由于非wab的例子可以工作,我假设war文件不正确。我花了更多的时间向你提供必要的信息(我希望如此)。

war-file的结构是:

¦---index.html
¦
+---META-INF
¦-------MANIFEST.MF
¦
+---WEB-INF
    ¦   web.xml
    ¦
    +---classes
        +---org
            +---osgi
                +---helloworld
                    +---wab
                            HelloWorldWab.class
                            HelloWorldWabActivator.class
                            HelloWorldWabComponent.class
                            HelloWorldWabServlet.class



清单。MF:

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.3
Created-By: 1.7.0_09-b05 (Oracle Corporation)
Bundle-ManifestVersion: 2
Bundle-Name: org.osgi.helloworld.wab
Bundle-SymbolicName: org.osgi.helloworld.wab
Bundle-Version: 1.0.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-Activator: org.osgi.helloworld.wab.HelloWorldWabActivator
Bundle-ClassPath: WEB-INF/classes
Import-Package: javax.servlet, javax.servlet.http, org.osgi.framework,
  org.osgi.service.component, org.osgi.service.http, org.osgi.util.tra
 cker
Export-Package: org.osgi.helloworld.wab
Web-ContextPath: /helloworld
Webapp-Context: /helloworld



当我开始&停止bundle, HelloWorldWabActivator的方法被作为aspect调用。

web . xml:

<web-app>
    <!-- welcome file mapping -->
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <servlet>
        <servlet-name>HelloWorldWabServlet</servlet-name>
        <servlet-class>org.osgi.helloworld.wab.HelloWorldWabServletXXX</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>HelloWorldWabServlet</servlet-name>
        <url-pattern>/HelloWorldWabServlet</url-pattern>
    </servlet-mapping>
</web-app>



OSGi服务器:

START LEVEL 1
   ID|State      |Level|Name
    0|Active     |    0|System Bundle (4.2.1)
    1|Active     |    1|Apache Commons FileUpload (1.2.2.v20111214-1400)
    2|Active     |    1|Apache Commons IO (1.4.0.v20081110-1000)
    3|Active     |    1|Apache Felix Bundle Repository (1.6.6)
    4|Active     |    1|Apache Felix Configuration Admin Service (1.6.0)
    5|Active     |    1|Apache Felix EventAdmin (1.3.2)
    6|Active     |    1|Apache Felix File Install (3.2.6)
    7|Active     |    1|Apache Felix Gogo Command (0.12.0)
    8|Active     |    1|Apache Felix Gogo Runtime (0.10.0)
    9|Active     |    1|Apache Felix Gogo Shell (0.10.0)
   10|Active     |    1|Apache Felix Http Api (2.2.0)
   11|Active     |    1|Apache Felix Http Base (2.2.0)
   12|Active     |    1|Apache Felix Http Bridge (2.2.0)
   13|Active     |    1|Apache Felix Http Bundle (2.2.0)
   14|Active     |    1|Apache Felix Http Jetty (2.2.0)
   15|Active     |    1|Apache Felix Http Proxy (2.2.0)
   16|Active     |    1|Apache Felix Http Whiteboard (2.2.0)
   17|Active     |    1|Apache Felix Log Service (1.0.1)
   18|Active     |    1|Apache Felix Preferences Service (1.0.4)
   19|Active     |    1|Apache Felix Declarative Services (1.6.2)
   20|Active     |    1|Apache Felix Web Management Console (4.0.0)
   21|Active     |    1|JSON Implementation for Java (1.0.0.v201011060100)
   22|Active     |    1|org.osgi.helloworld.wab (1.0.0.qualifier)
   23|Active     |    1|org.osgi.helloworld.servlet (1.0.0.qualifier)

感谢您的支持

您是否也在MANIFEST文件中指定了Web-ContextPath ?

http://www.javabeat.net/2011/11/writing-an-osgi-web-application/

理想情况下,你也应该在WEB-INF文件夹中指定一个web.xml文件。

关于如何在pax web项目中提供的OSGi-Web容器上运行web应用程序,有几个不同的示例,这些示例可能会帮助您解决问题并快速使用OSGi-WARs。Pax-Web样品对了,确保你设置了WebApp-Context。

我必须添加pax-web-extender-war包(可能还有pax-url)和依赖项,才能让war样式的wabs与web.xml一起工作。为了在eclipse中的bndTools felix运行时中完成此操作,我从最新的Apache ServiceMix系统/目录中提取了所有的jar/bundle;将它们全部导入到我的bndTools本地存储库中;并将所有的pax和jetty包添加到我的bndTools Run配置中。(您可能需要跟踪一些额外的依赖项)。

相关内容

  • 没有找到相关文章

最新更新