最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

spring boot - Exclusive Fallback Method Not Trigger - Stack Overflow

programmeradmin1浏览0评论
@Slf4j
@RequiredArgsConstructor
@Service("healthPolicyService")
public class HealthPolicyPurchaseImpl implements PolicyPurchaseService {
    
private final RestTemplate restTemplate;    
    

    @Override
    @CircuitBreaker(name = "purchase-service", fallbackMethod = "buyPolicyFallback")
    public Map<String, Object> buyPolicy(JsonObject json, Long userId) {
        Map<String, Object> responseMap = new HashMap<>();
        String policyId = json.get("policy_id").getAsString();
        String categoryId = json.get("category_id").getAsString();
        String coverId = json.get("cover_id").getAsString();
        String periodId = json.get("period_id").getAsString();
        
        // Call validatePolicy with circuit breaker and let the exception propagate
        Map<String, Object> dataMap = validatePolicy(policyId, categoryId);
       

    }

Here When I'm calling the validatePolicy method which is offline so I will be getting some exception so here fallback designed for this method is not working...instead fallback mentioned on main buyPolicy method triggers even when the exception is raised and caught in below method


    // Fallback method for the main buyPolicy method
    public Map<String, Object> buyPolicyFallback(JsonObject json, Long userId, Exception e) {
        log.error("[CIRCUIT BREAKER] Main buyPolicy fallback triggered: {}", e.getMessage());
        Map<String, Object> responseMap = new HashMap<>();
        responseMap.put("Message", "Service is currently unavailable. Please try again later.");
        responseMap.put("Status", false);
        responseMap.put("HTTP Status", HttpStatus.SERVICE_UNAVAILABLE);
        return responseMap;
    }

    @SuppressWarnings({ "unchecked", "rawtypes" })
    @CircuitBreaker(name = POLICY_SERVICE, fallbackMethod = "policyServiceFallback")
    private Map<String, Object> validatePolicy(String policyId, String categoryId) {
        log.info("[HealthPolicyPurchaseImpl-validatePolicy] Validating policy with id: {} and category: {}", policyId, categoryId);
        try {
            String url = "http://policy-service/inc/policy/validatePolicy/{policy_id}/{category_id}";
            ResponseEntity<Map> response = restTemplate.exchange(url, HttpMethod.GET, null, Map.class, policyId, categoryId);
            return response.getBody();
        } catch (Exception e) {
            // In case of an exception, handle it and fallback
            log.error("[HealthPolicyPurchaseImpl-validatePolicy] Error validating policy: {}", e.getMessage());
            throw e;  // Let the exception propagate so the circuit breaker on the calling method is triggered
        }
    }

    private Map<String, Object> policyServiceFallback(String policyId, String categoryId, Exception e) {
        log.error("[CIRCUIT BREAKER] Policy service fallback triggered for policyId: {} and categoryId: {}: {}", policyId, categoryId, e.getMessage());
        Map<String, Object> responseMap = new HashMap<>();
        responseMap.put("ServiceUnavailable", true);
        responseMap.put("Message", "Policy Service is unavailable. Please try again later.");
        responseMap.put("Status", false);
        responseMap.put("HTTP Status", HttpStatus.SERVICE_UNAVAILABLE);
        return responseMap;
    }
发布评论

评论列表(0)

  1. 暂无评论