1.1. | Will Spring Security take care of all my application security requirements? |
Spring Security provides you with a very flexible framework for your authentication and authorization requirements, but there are many other considerations for building a secure application that are outside its scope. Web applications are vulnerable to all kinds of attacks which you should be familiar with, preferably before you start development so you can design and code with them in mind from the beginning. Check out the OWASP web site for information on the major issues facing web application developers and the countermeasures you can use against them. | |
1.2. | Why not just use web.xml security? |
Let's assume you're developing an enterprise application based on Spring. There are four security concerns you typically need to address: authentication, web request security, service layer security (i.e. your methods that implement business logic), and domain object instance security (i.e. different domain objects have different permissions). With these typical requirements in mind:
For simple applications, servlet specification security may just be enough. Although when considered within the context of web container portability, configuration requirements, limited web request security flexibility, and non-existent services layer and domain object instance security, it becomes clear why developers often look to alternative solutions. | |
1.3. | What Java and Spring Framework versions are required? |
Spring Security 2.0.x requires a minimum JDK version of 1.4 and is built against Spring 2.0.x. It should also be compatible with applications using Spring 2.5.x. Spring Security 3.0 requires JDK 1.5 as a minimum and will also require Spring 3.0. | |
1.4. | I'm new to Spring Security and I need to build an application that supports CAS single sign-on over HTTPS, while allowing Basic authentication locally for certain URLs, authenticating against multiple back end user information sources (LDAP and JDBC). I've copied some configuration files I found but it doesn't work. What could be wrong? Or subsititute an alternative complex scenario... |
Realistically, you need an understanding of the technolgies you are intending to use before you can successfully build applications with them. Security is complicated. Setting up a simple configuration using a login form and some hard-coded users using Spring Security's namespace is reasonably straightforward. Moving to using a backed JDBC database is also easy enough. But if you try and jump straight to a complicated deployment scenario like this you will almost certainly be frustrated. There is a big jump in the learning curve required to set up systems like CAS, configure LDAP servers and install SSL certificates properly. So you need to take things one step at a time. From a Spring Security perspective, the first thing you should do is follow the “Getting Started” guide on the web site. This will take you through a series of steps to get up and running and get some idea of how the framework operates. If you are using other technologies which you aren't familiar with then you should do some research and try to make sure you can use them in isolation before combining them in a complex system. |
1.1. | How do I know which package class X is in? |
The best way of locating classes is by installing the Spring Security source in your IDE. The distribution includes source jars for each of the modules the project is divided up into. Add these to your project source path and you can navigate directly to Spring Security classes (Ctrl-Shift-T in Eclipse). This also makes debugging easer and allows you to troubleshoot exceptions by looking directly at the code where they occur to see what's going on there. | |
1.2. | How do the namespace elements map to conventional bean configurations? |
There is a general overview of what beans are created by the namespace
in the namespace appendix of the reference guide. There is also a detailed
blog article called “Behind the Spring Security Namespace” on
blog.springsource.com.
If want to know the full details then the code is in the | |
1.3. | What does “ROLE_” mean and why do I need it on my role names? |
Spring Security has a voter-based architecture which means that an access
decision is made by a series of
The prefix can be changed by setting the | |
1.4. | How do I know which dependencies to add to my application to work with Spring Security? |
It will depend on what features you are using and what type of
application you are developing. With Spring Security 3.0, the project jars
are divided into clearly distinct areas of functionality, so it is
straightforward to work out which Spring Security jars you need from your
application requirements. All applications will need the
For third-party jars the situation isn't always quite so obvious. A good starting point is to copy those from one of the pre-built sample applications WEB-INF/lib directories. For a basic application, you can start with the tutorial sample. If you want to use LDAP, with an embedded test server, then use the LDAP sample as a starting point. If you are building your project with maven, then adding the appropriate Spring Security modules as dependencies to your pom.xml will automatically pull in the core jars that the framework requires. Any which are marked as "optional" in the Spring Security POM files will have to be added to your own pom.xml file if you need them. |
1.1. | I need to login in with more information than just the username. How do I add support for extra login fields (e.g. a company name)? |
This question comes up repeatedly in the Spring Security forum so you will find more information there by searching the archives (or through google). The submitted login information is processed by an
instance of You will also need to customize the actual authentication
process. If you are using a custom authentication token class, for example,
you will have to write an | |
1.2. | How do I apply different |
You can't do this, since the fragment is not transmitted from the browser to the server. The URLs above are identical from the server's perspective. This is a common question from GWT users. | |
1.3. | How do I access the user's IP Address (or other web-request data) in a |
Obviously you can't (without resorting to something like thread-local variables) since
the only information supplied to the interface is the username. Instead of implementing
In a standard web setup, the | |
1.4. | How do I access the |
You can't, since the If you really need to access the session, then it must be done by customizing the web tier. | |
1.5. | How do I define the secured URLs within an application dynamically? |
People often ask about how to store the mapping between secured URLs and security metadata attributes in a database, rather than in the application context. The first thing you should ask yourself is if you really need to do this. If an application requires securing, then it also requires that the security be tested thoroughly based on a defined policy. It may require auditing and acceptance testing before being rolled out into a production environment. A security-conscious organization should be aware that the benefits of their diligent testing process could be wiped out instantly by allowing the security settings to be modified at runtime by changing a row or two in a configuration database. If you have taken this into account (perhaps using multiple layers of security within your application) then Spring Security allows you to fully customize the source of security metadata. You can make it fully dynamic if you choose. Both method and web security are protected by subclasses of
To load the data from an alternative source,
you must be using an explicitly declared security filter chain (typically
Spring Security's public class MyFilterSecurityMetadataSource implements FilterInvocationSecurityMetadataSource { public List<ConfigAttribute> getAttributes(Object object) { FilterInvocation fi = (FilterInvocation) object; String url = fi.getRequestUrl(); String httpMethod = fi.getRequest().getMethod(); List<ConfigAttribute> attributes = new ArrayList<ConfigAttribute>(); // Lookup your database (or other source) using this information and populate the // list of attributes return attributes; } public Collection<ConfigAttribute> getAllConfigAttributes() { return null; } public boolean supports(Class<?> clazz) { return FilterInvocation.class.isAssignableFrom(clazz); } } For more information, look at the code for
| |
1.6. | How do I authenticate against LDAP but load user roles from a database? |
The To use JDBC instead, you can implement the interface yourself, using whatever SQL is appropriate for your schema: public class MyAuthoritiesPopulator implements LdapAuthoritiesPopulator { @Autowired JdbcTemplate template; List<GrantedAuthority> getGrantedAuthorities(DirContextOperations userData, String username) { List<GrantedAuthority> = template.query("select role from roles where username = ?", new String[] {username}, new RowMapper<GrantedAuthority>() { /** * We're assuming here that you're using the standard convention of using the role * prefix "ROLE_" to mark attributes which are supported by Spring Security's RoleVoter. */ public GrantedAuthority mapRow(ResultSet rs, int rowNum) throws SQLException { return new GrantedAuthorityImpl("ROLE_" + rs.getString(1); } } } } You would then add a bean of this type to your application context and inject
it into the | |
1.7. | I want to modify the property of a bean that is created by the namespace, but there is nothing in the schema to support it. What can I do short of abandoning namespace use? |
The namespace functionality is intentionally limited, so it doesn't cover everything that you can
do with plain beans. If you want to do something simple, like modify a bean, or inject a different
dependency, you can do this by adding a
Normally, you would add the functionality you require to the public class BeanPostProcessor implements BeanPostProcessor { public Object postProcessAfterInitialization(Object bean, String name) { if (bean instanceof UsernamePasswordAuthenticationFilter) { System.out.println("********* Post-processing " + name); ((UsernamePasswordAuthenticationFilter)bean).setAuthenticationDetailsSource( new AuthenticationDetailsSource() { public Object buildDetails(Object context) { return ((HttpServletRequest)context).getHeader("CUSTOM_HEADER"); } }); } return bean; } public Object postProcessBeforeInitialization(Object bean, String name) { return bean; } } You would then register this bean in your application context. Spring will automatically invoke it on the beans defined in the application context. |
[1] The
FilterInvocation object contains the
HttpServletRequest, so you can obtain the
URL or any other relevant information on which to base your decision
on what the list of returned attributes will
contain.