mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-29 15:22:15 +00:00
Remove broken links.
This commit is contained in:
parent
c8e81bd425
commit
2006bddf51
@ -156,7 +156,8 @@
|
|||||||
<h2>Common Problem #1: My application goes into an "endless loop" when I try to login, what's going on?</h2>
|
<h2>Common Problem #1: My application goes into an "endless loop" when I try to login, what's going on?</h2>
|
||||||
<p>A common user problem with infinite loop and redirecting to the login page
|
<p>A common user problem with infinite loop and redirecting to the login page
|
||||||
is caused by accidently configuring the login page as a "secured" resource.
|
is caused by accidently configuring the login page as a "secured" resource.
|
||||||
See this forum <a href="http://forum.springframework.org/viewtopic.php?t=8766">post</a> for more details.</p>
|
Generally make sure you mark your login page as requiring ROLE_ANONYMOUS.
|
||||||
|
</p>
|
||||||
|
|
||||||
<h2>Common Problem #2: My application pages don't seem to be protected.</h2>
|
<h2>Common Problem #2: My application pages don't seem to be protected.</h2>
|
||||||
<p>If you are securing web resources and they dont seem to be matched in the URL patterns,
|
<p>If you are securing web resources and they dont seem to be matched in the URL patterns,
|
||||||
@ -176,8 +177,6 @@
|
|||||||
<value>
|
<value>
|
||||||
</property>
|
</property>
|
||||||
</pre>
|
</pre>
|
||||||
<p>
|
|
||||||
See this forum <a href="http://forum.springframework.org/viewtopic.php?t=8746">post</a> for more details.</p>
|
|
||||||
|
|
||||||
<h2>Common Problem #3: How do I disable a user after a number of failed logins?</h2>
|
<h2>Common Problem #3: How do I disable a user after a number of failed logins?</h2>
|
||||||
<p>A common user requirement is to disable / lock an account after a number of failed login attempts.
|
<p>A common user requirement is to disable / lock an account after a number of failed login attempts.
|
||||||
@ -197,16 +196,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</pre>
|
</pre>
|
||||||
See this forum <a href="http://forum.springframework.org/viewtopic.php?t=8525">post</a> for more details.</p>
|
|
||||||
|
|
||||||
<h2>Common Problem #4: I am changing my password using a web controller and DAO, why is my password still not being refreshed?</h2>
|
<h2>Common Problem #4: I am changing my password using a web controller and DAO, why is my password still not being refreshed?</h2>
|
||||||
<p>There are three things you must do to make a user password change take affect:
|
<p>There are three things you must do to make a user password change take affect:
|
||||||
<ul>
|
<ul>
|
||||||
<li> Change the password using your authentication DAO</li>
|
<li> Change the password using your authentication DAO</li>
|
||||||
<li> Remove the user from the User Cache (i.e. if you have a cache configured) </li>
|
<li> Remove the user from the User Cache (i.e. if you have a cache configured) </li>
|
||||||
<li> Update the <tt>ContextHolder</tt> to include the new <tt>Authentication</tt> object and password</li>
|
<li> Update the <tt>SecurityContextHolder</tt> to include the new <tt>Authentication</tt> object and password</li>
|
||||||
</ul>
|
</ul>
|
||||||
See this forum <a href="http://forum.springframework.org/viewtopic.php?t=4624">post</a> for more details.</p>
|
|
||||||
|
|
||||||
<h2>I need some help. What files should I post?</h2>
|
<h2>I need some help. What files should I post?</h2>
|
||||||
<p>The most important things to post with any support requests on the
|
<p>The most important things to post with any support requests on the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user