Is there something specific you're trying to achieve?
The usual symptom when attempting to do this is to break all the servlet internal dispatching, such as the default servlet and jsp rendering.
Using the thundr framework, this is the standard web.xml:
<servlet>
<servlet-name>thundr</servlet-name>
<servlet-class>com.threewks.thundr.ThundrServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>thundr</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- Objectify filter - required for Objectify to work -->
<filter>
<filter-name>ObjectifyFilter</filter-name>
<filter-class>com.googlecode.objectify.ObjectifyFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ObjectifyFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>