0

我们正在尝试使用 spring 和 axis 来实现 Web 服务。作为参考,我们使用了这个站点。这里他们建议通过扩展 ServletEndpointSupport 来实现端点,如下所示

import org.springframework.remoting.jaxrpc.ServletEndpointSupport;

public class SpringWSEndPoint extends ServletEndpointSupport
{
}

但是org.springframework.remoting.jaxrpc.ServletEndpointSupport类来自 JAR spring-remoting-2.0.8.jar ,该 JAR spring-remoting-2.0.8.jar在最新版本中没有由 spring 框架发布。我们知道spring-remoting 成为spring-context的一部分,所以更新的版本与 spring-context 一起发布。

我的问题是 我们如何使用 Spring-context jar 实现相同的功能? Spring-context jar 中 ServletEndpointSupport 的等效类是什么?

即时帮助将不胜感激。

提前致谢!

4

1 回答 1

0

我建议使用Spring-WS - 特别是因为 ServletEndpointSupport 已被弃用 - http://forum.spring.io/forum/other-spring-related/remoting/78249-deprecation-of-servletendpointsupport

你可以探索spring-ws:http ://projects.spring.io/spring-ws/

将这些转换为 RESTful 服务也不太复杂。

于 2015-11-06T10:23:58.050 回答