views:

297

answers:

1

Has anybody seen a framework which is either written to work with Guice or a library that integrates an existing security system (ie: Acegi) with Guice?

I have found the following thus far...

http://code.google.com/p/warp-security/ (I think this abandonware)

http://code.google.com/p/warp-security/ (no documentation)

+1  A: 

For whatever it's worth (being quite a late answer), I've had success integrating Apache Shiro with Guice. Last time I checked, Acegi was too deeply dependent on Spring to be usable in a pure Guice solution. Shiro's documentation is a little lacking, but the API is pretty straight-forward and easy to use, if don't mind a little digging.

ig0774