Spring 集成

远程调用

远程调用的一些技术:

2022110104548

Spring 的远程调用

202211010453

RMI

@Bean
  public RmiServiceExporter rmiServiceExporter(Service service){
      RmiServiceExporter exporter = new RmiServiceExporter();
      exporter.setService(service);
      exporter.setServiceName("service");
      exporter.setServiceInterface(Service.class);
      exporter.setRegistryHost("ismy.wang");
      exporter.setRegistryPort(1999);
      return exporter;
  }

Hessian 和 Burlap

HttpInvoker

使用web服务