Does the spring framework support multi applications sharing a common user base?
e.g. 2 separate web applications somehow hook into a single database to get user related information (username, password, and maybe even roles)
The idea is this, something similiar to asp.net membership
it works like this, you can have 10 websites, all pulling their membership API from the same datasource. Security (roles) and site mappings are all peformed via this membership API.
Usually what happens is you release a application. Then you release another application, and then your clients ask if you can merge the users etc. The asp.net membership solves this problem from the get-go.
update
I am not asking for single-sign on in the sense that you can go to any website by just logging in once. But rather you have the same login credentials that can be used on all sites.