On Fri, Jan 20, 2012 at 3:10 AM, stsch77 <[email protected]> wrote: > There are plenty of tutorials talking about getting CDI up and running > on GAE. None of them worked for me. Was anybody able to run CDI on > GAE?
You can run Weld (I've done it but not recently) but it doesn't give you a very "deep" integration; because you don't have access to some of Jetty's container-level hooks you won't have injection on servlets and filters and other container-instantiated objects. I switched to Guice. It works great and gives you pretty much the same functionality. Star this issue: http://code.google.com/p/googleappengine/issues/detail?id=3548 Jeff -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
