25 lines
656 B
Plaintext
25 lines
656 B
Plaintext
<%@ page import="javax.security.auth.Subject" %>
|
|
<%@ page import="java.security.AccessController" %>
|
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
|
|
<html>
|
|
<head><title>Home Page</title></head>
|
|
<body>
|
|
<h1>Home Page</h1>
|
|
<p>
|
|
Anyone can view this page.
|
|
</p>
|
|
<p>
|
|
Your principal object is....: <%= request.getUserPrincipal() %>
|
|
</p>
|
|
<p>
|
|
Subject.getSubject(AccessController.getContext()) is....: <%= Subject.getSubject(AccessController.getContext()) %>
|
|
</p>
|
|
<p>
|
|
<sec:authorize url='/secure/index.jsp'>You can currently access "/secure" URLs.</sec:authorize>
|
|
</p>
|
|
|
|
<p>
|
|
<a href="secure/index.jsp">Secure page</a></p>
|
|
</body>
|
|
</html>
|