dubbo之webservice协议使用

害怕文章没有了,借鉴一下,还请原谅

文章转载 : 

dubbo之webservice协议使用_乾坤刀_51CTO博客icon-default.png?t=L9C2https://blog.51cto.com/881206524/1924889

普通接口及实现类

public interface WsService 
{
	String sayHello(String msg);
}
public class WsServiceImpl implements WsService 
{
	@Override
	public String sayHello(String msg) 
	{
		 return "hello " + msg;
	}
}

 

dubbo服务提供者配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
    xsi:schemaLocation="http://www.springframework.org/schema/beans        
	http://www.springframework.org/schema/beans/spring-beans.xsd        
	http://code.alibabatech.com/schema/dubbo        
	http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
 
    <!-- 提供方应用信息,用于计算依赖关系 -->
    <dubbo:application name="dubbo-webservice-app-provider"  />
<!--     <dubbo:registry protocol="multicast" address="224.5.6.7:1234"/> -->

    <!-- 如果server:servlet,则端口必须与servlet容器端口一致,同时contextpath与servlet应用的上下文相同 -->
    <dubbo:protocol name="webservice" port="8080" server="servlet"/>
    
    <dubbo:service interface="com.dubbo.webservice.WsService" ref="wsService" registry="N/A" path="service" />
    <bean id="wsService" class="com.dubbo.webservice.WsServiceImpl" />
 
</beans>
-----------------------------------
©著作权归作者所有:来自51CTO博客作者乾坤刀的原创作品,如需转载,请注明出处,否则将追究法律责任
dubbo之webservice协议使用
https://blog.51cto.com/881206524/1924889

dubbo服务消费者配置

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://code.alibabatech.com/schema/dubbo
       http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

    <!-- 提供方应用信息,用于计算依赖关系 -->
    <dubbo:application name="dubbo-webservice-app-consumer"/>

    <!-- 使用multicast广播注册中心暴露服务地址 -->
    <!-- <dubbo:registry address="multicast://224.5.6.7:1234"/> -->

    <!-- 声明需要暴露的服务接口 -->
    <dubbo:reference interface="com.dubbo.webservice.WsService" id="wsService" url="webservice://localhost:8080/ProjectBuild/service" registry="N/A"/>

</beans>
-----------------------------------
©著作权归作者所有:来自51CTO博客作者乾坤刀的原创作品,如需转载,请注明出处,否则将追究法律责任
dubbo之webservice协议使用
https://blog.51cto.com/881206524/1924889

 web.xml配置

<servlet>
		         <servlet-name>dubbo</servlet-name>
		         <servlet-class>com.alibaba.dubbo.remoting.http.servlet.DispatcherServlet</servlet-class>
		         <load-on-startup>1</load-on-startup>
		</servlet>
		<servlet-mapping>
		         <servlet-name>dubbo</servlet-name>
		         <url-pattern>/*</url-pattern>
		</servlet-mapping>
-----------------------------------
©著作权归作者所有:来自51CTO博客作者乾坤刀的原创作品,如需转载,请注明出处,否则将追究法律责任
dubbo之webservice协议使用
https://blog.51cto.com/881206524/1924889

依赖配置文件 

  <dependency>
    <groupId>org.apache.cxf</groupId>
      <artifactId>cxf-rt-frontend-simple</artifactId>
      <version>2.6.1</version>
    </dependency>
    <dependency>
	    <groupId>org.apache.cxf</groupId>
	    <artifactId>cxf-rt-transports-http</artifactId>
	    <version>2.6.1</version>
     </dependency>
-----------------------------------
©著作权归作者所有:来自51CTO博客作者乾坤刀的原创作品,如需转载,请注明出处,否则将追究法律责任
dubbo之webservice协议使用
https://blog.51cto.com/881206524/1924889

注意事项

  1. 需要指定<dubbo:protocol server="servlet">.

  2. jar需要使用2.6.1版本,使用高版本好像有问题,消费者无法访问.

  3. 消费者引用时,url需要带上应用上下文,否则也无法访问.

  4. 针对servlet的服务,端口和上下文必须与应用服务器的端口及上下文保持一致.

遗留问题

1.dubbo-webservice与标准webservice的相互使用

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值