GWT Acegi alternative
Posted
by DroidIn.net
on Stack Overflow
See other posts from Stack Overflow
or by DroidIn.net
Published on 2010-03-09T01:21:20Z
Indexed on
2010/03/17
19:41 UTC
Read the original article
Hit count: 503
I'm starting new project. The client interface is based on GWT (and GXT) I have no say it's predetermined. However I can pick and choose as far as server side so I can have some fun and hopefully learn something new in the process. Some requirements are :
- Exchange with server will be through use of JSON, most if not all of UI will be generated by GWT (JS) on the client, so the client/serve exchange will be limited to data exchange as much as possible
- No Hibernate (it's not really supported on the proprietary db I will be connecting to). In the past projects people would use JDBC or iBATIS
- Some sort of IoC (I'm thinking Guice just to stick with Google)
- Some sort of Security framework based on LDAP. In the past we would use Spring security (Acegi) but it wasn't ideal and we had to customize it a lot
So basically should I stick with tried-and-true Spring/Acegi or try something based on Guice? And what that "something" would be and how mature is it?
© Stack Overflow or respective owner