码迷,mamicode.com
首页 > 编程语言 > 详细

使用Spring httpinvoker 远程调用

时间:2017-09-17 13:21:30      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:.com   错误   否则   客户   过滤   tor   bsp   img   ping   

服务器端:

spring.xml 中添加:

<bean id="aboutUsService"  class="org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter">  
        <property name="service" > 
            <bean class="com.XXX.XXX.service.impl.XXXX" />  
        </property>
        <property name="serviceInterface" value="com.XXX.XXX.service.XXXService" />
    </bean>

服务器端 web.xml 中添加:

<servlet>
        <servlet-name>aboutUsService</servlet-name>
        <servlet-class>org.springframework.web.context.support.HttpRequestHandlerServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>aboutUsService</servlet-name>
        <url-pattern>/as</url-pattern>
    </servlet-mapping>

服务器端 web.xml 中,servlet-name 需要与spring.xml中的bean id一致,否则会报错,找不到该 id

--------------------------------------------------------------------------------------------------------------------------------------------------------------------

在网上查找资料,使用的是:

 

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="/aboutUs.service">aboutUsServiceInvoker</prop>
            </props>
        </property>
    </bean>

 

报的是

技术分享

 

 

不知道什么原因,哪位大神看到,可以帮忙解释下。。。

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------

客户端:

<bean id="aboutUsServiceProxy" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
        <property name="serviceUrl" value="http://127.0.0.1:8080/emart/as" />
        <property name="serviceInterface" value="com.XXX.XXX.service.AboutUsService" />
    </bean>

这里需要注意项目中的过滤器,不过滤/as的请求。

如有错误,请大神在评论区指示!!!!!!

 

使用Spring httpinvoker 远程调用

标签:.com   错误   否则   客户   过滤   tor   bsp   img   ping   

原文地址:http://www.cnblogs.com/xiaojiege/p/7534887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!