如果服务器关闭(不可用),如何捕获ConnectException
通知用户。
我使用以下代码构建登录名:
Form form = new Form()
.param("username", userName)
.param("password", password);
try {
return ClientBuilder
.newClient()
.target(LOGIN_URL)
.request()
.post(Entity.form(form), User.class);
} catch (NotAuthorizedException e) {
logger.error(e.getMessage(), e);
}
return null;
当后端发生故障时我怎么知道?