Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Spring Security lets you define the URL patterns that need to be secured. You could, for example, decide to secure the URL path /admin and all of its subpages and files.
<http auto-config="true" session-fixation-protection="none" >
<intercept-url pattern="/admin/**" access="ROLE_ADMIN" />
</http>