千家信息网

dubbo之rmi协议使用

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,普通接口与实现类public interface DemoService { String sayHello(String msg);}public class DemoServiceImpl
千家信息网最后更新 2025年01月20日dubbo之rmi协议使用

普通接口与实现类

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

dubbo服务提供者配置


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服务消费者配置


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











springRMI服务配置


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">





















springRMI客户端配置


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">







dubboRMI与springRMI相互调用注意点

  1. 端口须匹配

  2. 与 springRMI配置 要一致, dubbo默认为接口全路径



0