Pessoal eu achei muito boa a ideia do site : http://static.springsource.org/spring-security/site/docs/3.1.x/reference/authorization.html
Alguém sabe comeu eu faço para iniciar isso no meu sistema ?
[code]<html><head>
<meta http-equiv=“Content-Type” content=“text/html; charset=ISO-8859-1”>
<title>Part IV. Authorization</title><link rel=“stylesheet” href=“css/manual.css” type=“text/css”><meta name=“generator” content=“DocBook XSL-NS Stylesheets V1.75.2”><link rel=“home” href=“springsecurity.html” title=“Spring Security”><link rel=“up” href=“springsecurity.html” title=“Spring Security”><link rel=“prev” href=“anonymous.html” title=“12. Anonymous Authentication”><link rel=“next” href=“authz-arch.html” title=“13. Authorization Architecture”><!–Begin Google Analytics code–><script type=“text/javascript”>
var gaJsHost = ((“https:” == document.location.protocol) ? “https://ssl.” : “http://www.”);
document.write(unescape("%3Cscript src=’" + gaJsHost + “google-analytics.com/ga.js’ type=‘text/javascript’%3E%3C/script%3E”));
</script><script type=“text/javascript”>
var pageTracker = _gat._getTracker(“UA-2728886-3”);
pageTracker._setDomainName(“none”);
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
</script><!–End Google Analytics code–></head><body bgcolor=“white” text=“black” link="#0000FF" vlink="#840084" alink="#0000FF"><div class=“navheader”><table width=“100%” summary=“Navigation header”><tr><th colspan=“3” align=“center”>Part IV. Authorization</th></tr><tr><td width=“20%” align=“left”>Prev </td><th width=“60%” align=“center”> </th><td width=“20%” align=“right”> Next</td></tr></table><hr></div><div class=“part” title=“Part IV. Authorization”><div class=“titlepage”><div><div><h1 class=“title”>Part IV. Authorization</h1></div></div></div><div class=“partintro” title=“Authorization”><div></div>
The advanced authorization capabilities within Spring Security represent one of
the most compelling reasons for its popularity. Irrespective of how you choose to
authenticate - whether using a Spring Security-provided mechanism and provider, or
integrating with a container or other non-Spring Security authentication authority -
you will find the authorization services can be used within your application in a
consistent and simple way.
In this part we’ll explore the different
<code class=“classname”>AbstractSecurityInterceptor</code> implementations, which were
introduced in Part I. We then move on to explore how to fine-tune authorization
through use of domain access control lists.
_lf_cid = “LF_48be82fa”;
_lf_remora();
</script><!–End LoopFuse code–><div class=“navfooter”><hr><table width=“100%” summary=“Navigation footer”><tr><td width=“40%” align=“left”>Prev </td><td width=“20%” align=“center”> </td><td width=“40%” align=“right”> Next</td></tr><tr><td width=“40%” align=“left” valign=“top”>12. Anonymous Authentication </td><td width=“20%” align=“center”>Home</td><td width=“40%” align=“right” valign=“top”> 13. Authorization Architecture</td></tr></table></div><!-- Begin 2nd Google code - a mod -->
<script type=“text/javascript”>
var gaJsHost = ((“https:” == document.location.protocol) ? “https://ssl.” : “http://www.”);document.write(unescape("%3Cscript src=’" + gaJsHost + “google-analytics.com/ga.js’ type=‘text/javascript’%3E%3C/script%3E”));</script>
<script type=“text/javascript”>
var OrgTracker = _gat._getTracker(“UA-2728886-2”); OrgTracker._setDomainName(“none”);
OrgTracker._setAllowLinker(true);
OrgTracker._trackPageview();
</script>
<!-- End 2nd Google code -->
<script type=“text/javascript”>
function detectLastFrame() {
var thisF = this.window;
var allF = parent.top.frames;
return allF[allF.length - 1] == thisF; }
// Only inject the following code if this is a normal page or the last // frame of a frameset.
if (parent.top.frames.length == 0 || detectLastFrame()) {
// Inject the SpringSource search widget too.
document.write(unescape("%3Cscript src=‘http://search.springsource.org/widget/searchtool.js’ type=‘text/javascript’%3E%3C/script%3E"));
// Inject the Eloqua code
document.write(unescape("%3Cscript src=’/elqNow/elqCfg.js’ type=‘text/javascript’%3E%3C/script%3E"));
document.write(unescape("%3Cscript src=’/elqNow/elqImg.js’ type=‘text/javascript’%3E%3C/script%3E"));
}
</script>
</body>
</html>[/code]