mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-03-20 21:41:06 +00:00
17 lines
535 B
Plaintext
17 lines
535 B
Plaintext
<%@ page import="org.acegisecurity.context.SecurityContextHolder" %>
|
|
<%@ page import="org.acegisecurity.Authentication" %>
|
|
<%@ page import="org.acegisecurity.ui.AccessDeniedHandlerImpl" %>
|
|
|
|
<h1>Sorry, access is denied</h1>
|
|
|
|
|
|
<p>
|
|
<%= request.getAttribute(AccessDeniedHandlerImpl.ACEGI_SECURITY_ACCESS_DENIED_EXCEPTION_KEY)%>
|
|
|
|
<p>
|
|
|
|
<% Authentication auth = SecurityContextHolder.getContext().getAuthentication();
|
|
if (auth != null) { %>
|
|
Authentication object as a String: <%= auth.toString() %><BR><BR>
|
|
<% } %>
|