我的微服务的一个实例已关闭,当我尝试对该微服务进行调用时,即使其他许多实例都已启动并正在运行,它也无法工作。
我不太了解,错误日志也无济于事。我需要手动切换到另一个实例吗?我认为注册表的工作就是照顾这些事情?
我在服务类中没有做任何更改:
public resourceUrl = SERVER_API_URL + 'productms/api/products';
find(id: number): Observable<EntityResponseType> {
return this.http.get<IProduct>(`${this.resourceUrl}/${id}`, { observe: 'response' });
}
致谢