HttpService unsatisfied dependencies [[&httpService]]

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.

你可能感兴趣的:(eclipse,spring,PHP,servlet,osgi)