We have decided that all our modular code should use JSR-330 dependency injection and we have used Guice 2.1SVN or Java EE 6 CDI to do the actual injection in several projects and has worked very well.

We have one remaining scenario where I need to find a solution, namely that we have an embedded web container running on Java 5 where I would like to be able to deploy WAR-files using JSR-330 injection like in Java EE 6.

I have found that GlassFish and Resin 4 can do this, but the Java EE 6 web profile is simply too large for this purpose as we run quite small applications each in their own embedded server.

Hence the question is, does there exist a web container with native JSR-330 support easily available so we can deploy our existing code into it (compiled for Java 5) without having the full Weld or the Guice-servlet enclosed in the WAR. It is perfectly fine to have a full configuration suite placed in the main code invoking the web container, but I don't want any guice/Spring/weld jars in the actual web application deployment.

link|improve this question

61% accept rate
that's a very strange requirement :) – Bozho Dec 3 '10 at 15:06
Bozho, a small web container that can do DI? – Thorbjørn Ravn Andersen Dec 3 '10 at 18:18
feedback

1 Answer

Have you considered using Jetty 6 or 7 Embedded? It's open source and supported by Eclipse, so will have a long lifetime of support. I use it all the time with Spring for DI and find it extremely lightweight. Ideal for rapid, iterative development.

Your question specifies no Guice, Spring or Weld jars in the actual application. Jetty allows configuration of different classpaths, so you can include the necessary support implementations of JSR-330 as required.

link|improve this answer
The current implementation is an embedded Jetty 6, which has worked very well and I like it a lot. – Thorbjørn Ravn Andersen Dec 4 '10 at 8:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.