package cn.hhj.disovery; import java.util.List; public interface IServiceDiscovery { //根据服务名称返回服务地址 List discovery(String serviceName); }