如果发生超时,一种方法是定期检查服务器。您必须编写一个 servlet 方法来执行该检查,而无需更新服务器会话超时!当然,这会导致大量服务器命中。(虽然不一定是一个坏方法!)
但也许我会使用不同的解决方案,它试图让客户端的计时器与服务器的计时器大致同步,例如
客户端:
import com.google.gwt.user.client.Timer;
public class ClientTimers {
private static final Timer SESSION_MAY_HAVE_EXPIRED_TIMER = new Timer() {
@Override
public void run() {
// Warn the user, that the session may have expired.
// You could then show a login dialog, etc...
}
};
public static void renewSessionTimer() {
// First cancel the previous timer
SESSION_MAY_HAVE_EXPIRED_TIMER.cancel();
// Schedule again in 5 minutes (maybe make that configurable?)
// Actually, let's subtract 10 seconds from that, because our timer
// won't be synchronized perfectly with the server's timer.
SESSION_MAY_HAVE_EXPIRED_TIMER.schedule(5 * 60 * 1000 - 10000);
}
}
我假设每次客户端执行与服务器的交互时,您的服务器会话超时都会更新,例如 GWT-RPC 调用(如果会话尚未超时)。
所以在客户端,我也会更新客户端计时器,以保持它大致同步:
myService.performSomeAction(...) {
@Override
public void onSuccess(String result) {
ClientTimers.renewSessionTimer();
// remaining onSuccess handling
}
@Override
public void onFailure(Throwable caught) {
if (failedBecauseOfSessionTimeout()) {
// redirect to login
} else {
ClientTimers.renewSessionTimer();
// remaining onFailure handling...
}
}
}
不要忘记在所有交互上调用 renewSessionTimer()(尤其是直接在登录后)。
重要提示:对于所有安全检查,仅使用服务器会话。客户端“会话计时器”只是为用户提供方便。不要根据该计时器或任何类型的客户端会话进行安全/授权检查。