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

2014-05-12 Thread David Sowerby
Hi Damian This project https://github.com/davidsowerby/v7 uses Guice Shiro - you may be able to use some of this to get you started .. (Confession - I am the author of that project) On Thursday, 8 May 2014 16:43:50 UTC+1, Damian Ramirez wrote: I need to know what is the best way to

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

2014-05-09 Thread Jonas
I would just like to say that we use shiro and guice in combination and it works really great! Kind regards Jonas On Thursday, May 8, 2014 11:10:03 PM UTC+2, Filipe Sousa wrote: Try apache shiro (http://shiro.apache.org/) that has guice support ( https://shiro.apache.org/guice.html) On 08

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,