I am developing a web application with Grails 2.2.0 that performs all the actions through an implemented API that calls another server. This means that all things, even authentication and all related things, are done through the API and the corresponding server server.
Now, I wanted to use SpringSecurity or Apache Shiro Plugin for authentication and role management, etc., but what I came across all of them uses domain classes in connection with datbase, which is not what I intend to do. .. is it possible to use any of these plugins without connecting to the database without the need to configure them to a high degree? Or is there another plugin that I donโt know about that can bring the functionality that I need โno problemโ?
I hope that the question itself is clear enough, otherwise, please feel free to ask me for a further / better explanation of my question :)
source share