Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了一个返回的支持方法boolean isLoggedIn。我用它来渲染菜单。因此,如果未登录,则很少有菜单链接可见。
boolean isLoggedIn
但是如果用户自己去地址栏进入xhtml网页,如果他没有登录应该无法访问呢?如何在这些页面上进行检查和自动重定向?
一旦用户成功登录,将一些属性存储到会话中。当用户尝试通过在地址栏中键入 URL 来访问任何页面时,检查该属性是否存在于会话中。基本上您需要为每个页面检查该属性.您可以将其包含在过滤器中。