前段时间学习JMX,知道可以使用rmi连接器,就顺便看下rmi是什么东西,RMI 全称Remote Method Invocation-远程方法调用,实现远程对象之间的调用,下面原理图来自网络 服务器端定义接口和实现 public interface FFMMendService extends Remote { Long doReSend(long rcvId) throws RemoteException; } public class FFMMendServiceImpl extends…