*/
public abstract class TestSupport extends JerseyTest {
@Override
protected Application configure() {
final MyApplication application = new MyApplication();
application.register(JspMvcFeature.class);
application.property(ServletProperties.FILTER_FORWARD_ON_404, true);
return application;
}