mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-08 11:32:47 +00:00
Migrated to maven
This commit is contained in:
parent
bc0a3d888d
commit
2067effa4a
39
samples/contacts/maven.xml
Normal file
39
samples/contacts/maven.xml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<project
|
||||||
|
xmlns:j="jelly:core"
|
||||||
|
xmlns:ant="jelly:ant"
|
||||||
|
xmlns:maven="jelly:maven">
|
||||||
|
|
||||||
|
<goal name="war">
|
||||||
|
<!-- cas war -->
|
||||||
|
<j:set var="webapp" value="cas"/>
|
||||||
|
<attainGoal name="acegisecurity:war"/>
|
||||||
|
|
||||||
|
<!-- ca war -->
|
||||||
|
<j:set var="webapp" value="ca"/>
|
||||||
|
<attainGoal name="acegisecurity:war"/>
|
||||||
|
|
||||||
|
<!-- filter war -->
|
||||||
|
<j:set var="webapp" value="filter"/>
|
||||||
|
<attainGoal name="acegisecurity:war"/>
|
||||||
|
</goal>
|
||||||
|
|
||||||
|
<goal name="acegisecurity:war">
|
||||||
|
<maven:set plugin="maven-war-plugin"
|
||||||
|
property="maven.war.webapp.dir"
|
||||||
|
value="${maven.war.build.dir}/${pom.artifactId}-${webapp}"/>
|
||||||
|
<maven:set plugin="maven-war-plugin"
|
||||||
|
property="maven.war.final.name"
|
||||||
|
value="${pom.artifactId}-${webapp}.war"/>
|
||||||
|
<attainGoal name="war:war"/>
|
||||||
|
</goal>
|
||||||
|
|
||||||
|
<postGoal name="war:war-resources">
|
||||||
|
<maven:get plugin="maven-war-plugin"
|
||||||
|
property="maven.war.webapp.dir"
|
||||||
|
var="maven.war.webapp.dir"/>
|
||||||
|
<ant:copy todir="${maven.war.webapp.dir}" preservelastmodified="true">
|
||||||
|
<ant:fileset dir="${maven.war.src}/../${webapp}"/>
|
||||||
|
</ant:copy>
|
||||||
|
</postGoal>
|
||||||
|
|
||||||
|
</project>
|
@ -1,43 +1,43 @@
|
|||||||
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
||||||
<%-- This page will be copied into WAR's root directory if using container adapter --%>
|
<%-- This page will be copied into WAR's root directory if using container adapter --%>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Login</title>
|
<title>Login</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Login</h1>
|
<h1>Login</h1>
|
||||||
|
|
||||||
<P>If you've used the standard springsecurity.xml, try these users:
|
<P>If you've used the standard springsecurity.xml, try these users:
|
||||||
<P>
|
<P>
|
||||||
<P>username <b>marissa</b>, password <b>koala</b> (granted ROLE_SUPERVISOR)
|
<P>username <b>marissa</b>, password <b>koala</b> (granted ROLE_SUPERVISOR)
|
||||||
<P>username <b>dianne</b>, password <b>emu</b> (not a supervisor)
|
<P>username <b>dianne</b>, password <b>emu</b> (not a supervisor)
|
||||||
<p>username <b>scott</b>, password <b>wombat</b> (not a supervisor)
|
<p>username <b>scott</b>, password <b>wombat</b> (not a supervisor)
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
<%-- this form-login-page form is also used as the
|
<%-- this form-login-page form is also used as the
|
||||||
form-error-page to ask for a login again.
|
form-error-page to ask for a login again.
|
||||||
--%>
|
--%>
|
||||||
<c:if test="${not empty param.login_error}">
|
<c:if test="${not empty param.login_error}">
|
||||||
<font color="red">
|
<font color="red">
|
||||||
Your login attempt was not successful, try again.
|
Your login attempt was not successful, try again.
|
||||||
</font>
|
</font>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<form action="<c:url value='j_security_check'/>" method="POST">
|
<form action="<c:url value='j_security_check'/>" method="POST">
|
||||||
<table>
|
<table>
|
||||||
<tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
|
<tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
|
||||||
<tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
|
<tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
|
||||||
|
|
||||||
<tr><td colspan='2'><input name="submit" type="submit"></td></tr>
|
<tr><td colspan='2'><input name="submit" type="submit"></td></tr>
|
||||||
<tr><td colspan='2'><input name="reset" type="reset"></td></tr>
|
<tr><td colspan='2'><input name="reset" type="reset"></td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
- The j_uri is a Resin requirement (ignored by other containers)
|
- The j_uri is a Resin requirement (ignored by other containers)
|
||||||
-->
|
-->
|
||||||
<input type='hidden' name='j_uri' value='/secure/index.htm'/>
|
<input type='hidden' name='j_uri' value='/secure/index.htm'/>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -1,20 +1,20 @@
|
|||||||
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
||||||
<%@ page import="net.sf.acegisecurity.ui.AbstractProcessingFilter" %>
|
<%@ page import="net.sf.acegisecurity.ui.AbstractProcessingFilter" %>
|
||||||
<%@ page import="net.sf.acegisecurity.AuthenticationException" %>
|
<%@ page import="net.sf.acegisecurity.AuthenticationException" %>
|
||||||
<%-- This page will be copied into WAR's root directory if using CAS --%>
|
<%-- This page will be copied into WAR's root directory if using CAS --%>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Login to CAS failed!</title>
|
<title>Login to CAS failed!</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Login to CAS failed!</h1>
|
<h1>Login to CAS failed!</h1>
|
||||||
|
|
||||||
<font color="red">
|
<font color="red">
|
||||||
Your CAS credentials were rejected.<BR><BR>
|
Your CAS credentials were rejected.<BR><BR>
|
||||||
Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
|
Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
|
||||||
</font>
|
</font>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -1,43 +1,43 @@
|
|||||||
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
|
||||||
<%@ page import="net.sf.acegisecurity.ui.AbstractProcessingFilter" %>
|
<%@ page import="net.sf.acegisecurity.ui.AbstractProcessingFilter" %>
|
||||||
<%@ page import="net.sf.acegisecurity.AuthenticationException" %>
|
<%@ page import="net.sf.acegisecurity.AuthenticationException" %>
|
||||||
<%-- This page will be copied into WAR's root directory if NOT using container adapter --%>
|
<%-- This page will be copied into WAR's root directory if NOT using container adapter --%>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Login</title>
|
<title>Login</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1>Login</h1>
|
<h1>Login</h1>
|
||||||
|
|
||||||
<P>If you've used the standard springsecurity.xml, try these users:
|
<P>If you've used the standard springsecurity.xml, try these users:
|
||||||
<P>
|
<P>
|
||||||
<P>username <b>marissa</b>, password <b>koala</b> (granted ROLE_SUPERVISOR)
|
<P>username <b>marissa</b>, password <b>koala</b> (granted ROLE_SUPERVISOR)
|
||||||
<P>username <b>dianne</b>, password <b>emu</b> (not a supervisor)
|
<P>username <b>dianne</b>, password <b>emu</b> (not a supervisor)
|
||||||
<p>username <b>scott</b>, password <b>wombat</b> (not a supervisor)
|
<p>username <b>scott</b>, password <b>wombat</b> (not a supervisor)
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
<%-- this form-login-page form is also used as the
|
<%-- this form-login-page form is also used as the
|
||||||
form-error-page to ask for a login again.
|
form-error-page to ask for a login again.
|
||||||
--%>
|
--%>
|
||||||
<c:if test="${not empty param.login_error}">
|
<c:if test="${not empty param.login_error}">
|
||||||
<font color="red">
|
<font color="red">
|
||||||
Your login attempt was not successful, try again.<BR><BR>
|
Your login attempt was not successful, try again.<BR><BR>
|
||||||
Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
|
Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
|
||||||
</font>
|
</font>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<form action="<c:url value='j_acegi_security_check'/>" method="POST">
|
<form action="<c:url value='j_acegi_security_check'/>" method="POST">
|
||||||
<table>
|
<table>
|
||||||
<tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
|
<tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
|
||||||
<tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
|
<tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
|
||||||
|
|
||||||
<tr><td colspan='2'><input name="submit" type="submit"></td></tr>
|
<tr><td colspan='2'><input name="submit" type="submit"></td></tr>
|
||||||
<tr><td colspan='2'><input name="reset" type="reset"></td></tr>
|
<tr><td colspan='2'><input name="reset" type="reset"></td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
x
Reference in New Issue
Block a user