Hystrixのタイムアウト調整と回退戦略
商品サービスのインターフェースが安全認証などの複雑な処理を行い、2秒程度のタイムアウトを必要とする場合があります。
以下に示すのは、商品サービスの制御層です。
package com.inventorysystem.service.controllers;
import com.inventorysystem.service.models.inventory.InventoryItem;
import com.inventorysystem.service.services.InventoryService;
import org ...
5月18日 18:24 投稿