OsgiBundleXmlApplicationContext(bundle=Bootstrap, config=osgibundle:/META-INF/spring/*.xml) is waiting for unsatisfied dependencies [[&httpService]] 错误解决办法
缺少HttpService的实现jar包。
下载此jar放在eclipse目录plugins下,重新启动eclipse即可。
其他equinox包可以去 http://download.eclipse.org/equinox/drops/R-3.5.2-201002111343/index.php
更改Equinox的HttpService默认端口
-Dorg.osgi.service.http.port=7000
问题:java.lang.UnsupportedOperationException: HttpService only supports servlet 2.1 specification.
org.eclipse.equinox.http基于Servlet2.1规范的HttpService实现
org.eclipse.equinox.http.jetty 可支持Servlet2.4规范的HttpService实现
所以需要 setCharacterEncoding等2.1不支持的功能,可以停止org.eclipse.equinox.http,运行org.eclipse.equinox.http.jetty.
本文解决了一个关于OsgiBundleXmlApplicationContext等待未满足依赖的问题,主要是由于缺少HttpService实现导致。通过下载特定的jar包并放置在Eclipse的plugins目录下重启Eclipse来解决。此外还介绍了如何更改HttpService的默认端口以及使用不同版本的HttpService实现。
6459

被折叠的 条评论
为什么被折叠?



