我正在尝试弄清楚如何实现 Web 应用程序包。为此,我按照本教程中的说明创建了一个小示例。可以部署和启动战争文件,但我无法调用任何 url。
战争文件的结构;
+META-INF
MANIFEST.MF
+WEB-INF
classes/
fancyfoods/web/SayHello.class
web.xml
index.html
我试图调用
localhost:8080/
localhost:8080/fancyfoods.web/index.html
localhost:8080/fancyfoods .web/SayHello
但我总是收到“HTTP ERROR 404”
我不知道出了什么问题。我需要更多捆绑包来运行 Web 应用程序吗?
最良好的问候
切
再一次问好,
感谢您的回复,并对我的错误答案感到困惑(我是 Stack Overflow 的新手)。我从头开始了一个新的 WAB 示例,但它仍然无法正常工作。为了测试 http 服务是否正常工作,我首先实现了另一个包(不是 WAB),其中包含一个 servlet 和一个注册 servlet 和静态资源的 OSGi 组件。它有效!我可以调用 html 和 servlet。
现在回到我的 WAB 问题。由于非 WAB 示例有效,因此我假设 war 文件不正确。我投入了更多时间为您提供必要的信息(我希望如此)。
我的战争文件的结构是:
¦---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
当我启动和停止捆绑时,HelloWorldWabActivator 的方法会按方面调用。
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)
谢谢您的支持