Skip to content

Commit 285ee48

Browse files
committed
to #9 , 增加模拟慢调用
1 parent b59d559 commit 285ee48

File tree

1 file changed

+13
-13
lines changed
  • src/cartservice/cartservice-provider/src/main/java/com/alibabacloud/hipstershop/provider

1 file changed

+13
-13
lines changed

src/cartservice/cartservice-provider/src/main/java/com/alibabacloud/hipstershop/provider/CartServiceImpl.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ public class CartServiceImpl implements CartService {
2424

2525
private ConcurrentHashMap<String, List<CartItem>> cartStore = new ConcurrentHashMap<>();
2626

27-
@Value("${exception.enable:false}")
28-
private String exceptionEnable;
27+
@Value("${exception.ip:''}")
28+
private String exceptionIp;
2929

30-
private String localIp = getLocalIp();
30+
@Value("${slow.call.ip:''}")
31+
private String slowCallIp;
3132

3233
@Override
3334
public List<CartItem> viewCart(String userID) {
34-
35-
int code = 0;
36-
37-
if (StringUtils.endsWithIgnoreCase("true", exceptionEnable)) {
38-
if (!StringUtils.isEmpty(localIp)) {
39-
code = localIp.hashCode();
40-
}
41-
}
42-
43-
if (code % 2 == 1) {
35+
// 模拟运行时异常
36+
if (exceptionIp != null && exceptionIp.equals(getLocalIp())) {
4437
throw new RuntimeException("runtime exception");
4538
}
39+
// 模拟慢调用
40+
if (slowCallIp != null && slowCallIp.equals(getLocalIp())) {
41+
try {
42+
Thread.sleep(3000);
43+
} catch (InterruptedException e) {
44+
}
45+
}
4646

4747
return cartStore.getOrDefault(userID, Collections.emptyList());
4848
}

0 commit comments

Comments
 (0)