What is the best way to manage security with guice?

2014-05-08 Thread Damian Ramirez
I need to know what is the best way to manage security with guice like as sprint security o something like that, Thanks -- You received this message because you are subscribed to the Google Groups google-guice group. To unsubscribe from this group and stop receiving emails from it, send an

Re: What is the best way to manage security with guice?

2014-05-08 Thread Stephan Classen
None. Guice is a pure dependency injection library. Spring offers many features including dependency injection, security, and many more. If you decide to use Guice you are free to use any security library you want (including spring security). On

Re: What is the best way to manage security with guice?

2014-05-08 Thread Richard Mutezintare
you could also use method interceptors for both authentication and authorization sprinkling annotation on methods that need authorization, very easily On Thu, May 8, 2014 at 2:38 PM, Stephan Classen st.clas...@gmx.ch wrote: None. Guice is a pure dependency injection library. Spring offers

Re: What is the best way to manage security with guice?

2014-05-08 Thread Filipe Sousa
Try apache shiro (http://shiro.apache.org/) that has guice support (https://shiro.apache.org/guice.html) On 08 May 2014, at 16:43, Damian Ramirez drami...@grubhub.com wrote: I need to know what is the best way to manage security with guice like as sprint security o something like that,