在Spring Annotaion MVC环境中使用 hessian作为http远程服务导出时,按照官方的配置方式你可能会出现如下异常:
调用方出现:"returned HTTP response code: 500 for URL..."异常
服务端出现:“Could not complete request javax.servlet.ServletException: No adapter for handle org.springframework.remoting.caucho.HessianServiceExporter@d0122]: Does your handler implement a supported interface like Controller? ”
通过debug跟踪,我发现在使用注解MVC时,默认的AnnotationMethodHandlerAdapater不支持HttpRequestHandler接口(这个Adapter只支持具有相应注解的类),而HessianServiceExporter正是该接口的实现,因此在DispatherServlet中找不到对应的处理器适配器。
解决办法是人工添加一个HttpRequestHandlerAdapter。
<bean id="hessianHandlerAdapter" class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter">
这样Spring仍然在Adapter列表中第二次就能通过传统的方式对Hessian进行invoke。
参考了这篇http://hi.baidu.com/ecspell/blog/item/3d8db5457a98752acffca3ec.html
不过按照作者的配置还是出错,但启发了我。
另外,在用了annotation mvc后,我考虑要写个处理hessian的注解,把配置文件再省略掉。