vote up 0 vote down star
1

We are using the Grails Spring Security plugin for our Grails apps.

Grails Plugin

We would now like to use this same security mechanism in our Java/JSP apps. Is there a desired way to configure our JSP war files to use the same security tables, etc? We don't currently use Spring in our Java/JSPs so we'll be starting from scratch.

The Grails plugin creates 4 tables: requestmap, role, role_people, user. Do these map or get reused in the standard Spring Security model?

flag

1 Answer

vote up 0 vote down check

I find that Spring need not be an "all or none" proposition. You don't have to rewrite your entire app to get the benefit of Spring.

Spring Security uses aspects to protect URLs. If you can configure Spring to protect those URLs you're halfway there. You can reuse the classes you wrote to access your existing security schema, and Bob's your uncle. Shouldn't be a problem, as long as specifying the protected URLs is possible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.