0
A
回答
-1
用戶Spring HandlerInterceptorAdapter攔截請求並檢查用戶會話。 如果會話對象爲空/過期,則重定向到索引頁面。
例子:
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response, Object handler) throws Exception {
User user = (User) request.getSession().getAttribute("user");
if(!(user == null) {
response.sendRedirect("index.html");
}
}
相關問題
- 1. 春季MVC處理會話?
- 2. 春季幫助捕捉會話超時
- 3. JSF春季安全會話超時viewExpiredException
- 4. 在ASP.NET MVC中處理會話超時
- 5. 在春季會話超時前警告用戶mvc
- 6. 理想春季會議超時配置
- 7. 春季會話bean管理
- 8. 處理magento會話超時
- 9. 處理會話超時?
- 10. JSF,會話超時處理
- 11. 會話超時處理
- 12. 春季MVC會話屬性訪問
- 13. 春季MVC中的Http會話
- 14. 會話管理不春季安全
- 15. mvc會話超時
- 16. 春季安全與自定義會話超時
- 17. 上除了超時春季安全刪除會話cookie註銷
- 18. 如何在春季acegi框架中配置會話超時?
- 19. 春季安全:會話處理在應用程序啓動
- 20. 春季會話處理:HttpSessionDestroyedEvent沒有收到
- 21. 春季會話銷燬事件區分會話超時和註銷
- 22. 春季SessionRegistry會話ID
- 23. 春季會話併發
- 24. 春季websocket會話開始時間
- 25. 處理髮布者確認超時在春季AMQP-RabbitMQ
- 26. 處理會話超時丟失數據
- 27. 客戶端處理會話超時
- 28. 處理會話變量超時
- 29. JSF會話超時&異常處理
- 30. Grails:處理HTTP會話超時事件
你可以檢查這個問題http://stackoverflow.com/questions/1026846/how-to-redirect-to-login-page-when-session-is-expired-in -java-web-application 在過濾器(而不是攔截器)中,如果會話是新的,則重定向到索引頁 – jpprade