views:

368

answers:

2

Is there a way to handle security with google guice (like with Spring Security) ?

+1  A: 

There is nothing out of the box. There maybe some 3rd party extensions available...

mpetzsch
+2  A: 

I recently completed role based access on a project using Method Interceptors (AOP) and Guice. A decent example of such an implementation is available here.

gpampara