test
For more information:
http://code.google.com/p/google-guice/wiki/Servlets
Is there more complete documentation somewhere. Right off, this is
confusing. For example:
"Guice's servlet extensions allow you to completely eliminate
web.xml....Start by placing GuiceFilter at the top of your .web.xml file:"
One way to remove your web.xml is to create a subclass of
com.google.inject.servlet.GuiceFilter
Ex:
@WebFilter("/*")
public class MyGuiceFilter extends GuiceFilter {