我尝试添加两个注释的方法。我为两者保持相同的输入参数。后备方法在获得异常且没有异常之后调用。有想法吗?
我在同一方法上使用@Override
,@Async
,@HystrixCommand(fallbackMethod="show")
。
我的后备方法:
public ResponseEntity<String> show()
{
System.out.println("Ankur");
ResponseEntity<String> response = null;
return null;
}