dubbo之webservice协议使用

发布时间:2020-06-24 03:12:11 作者:乾坤刀
来源:网络 阅读:5905

普通接口及实现类

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>


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>


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>


依赖配置文件

    <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>


注意事项

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

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

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

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


遗留问题

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

推荐阅读:
  1. Dubbo是什么?如何使用Dubbo?
  2. python调用各种接口,webservice,c接口,com接口,socket协议方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

webservice dubbo bs

上一篇:MySQL数据库高级(一)——数据完整性

下一篇:Oracle表空间数据文件移动

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》