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;
我怎么知道后端何时关闭?