I am using the Spring Source 2.0 security plugin and I've done the tutorial described on this page using the Requestmap method of security.
I now want to create a second bookstore as follows and implement the same tutorial.
grails create-app bookstore2
Both apps will share the same database so all users, roles, etc will be common between the two apps. Finally, I want a given user to be automatically authenticated in the second bookstore if he authenticates in the first. What is the best way to implement this?