0

我想实现以下流程:

  1. 用户转到登录页面“使用 Facebook 登录”按钮显示在那里
  2. 用户使用他的 Facebook 帐户登录 “使用 Facebook 登录”按钮消失 “注销”按钮出现

我已经实现了我想要的一切,除了根据用户登录或退出显示控件。

我如何在 JSP 级别上做到这一点?我需要在标签中放入哪些变量?

谢谢

4

1 回答 1

0

尝试将Spring Security taglib 中的授权标签SpEL 表达式结合使用:

<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
<sec:authorize access="isAuthenticated()">
    Logout button goes here
</sec:authorize>
<sec:authorize access="isAnonymous()">
    Login button goes here
</sec:authorize>
于 2013-10-10T08:46:56.077 回答