Package org.glassfish.jersey.examples.bookstore.webapp

Examples of org.glassfish.jersey.examples.bookstore.webapp.MyApplication


*/
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;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.jersey.examples.bookstore.webapp.MyApplication

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.