Package org.jboss.resteasy.plugins.server.servlet

Examples of org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap


    @BeforeClass
    public static void setUp() {
        httpAppTester = new HttpAppTester("/");
        httpAppTester.setInitParameter("resteasy.resources", "com.thoughtworks.inproctester.resteasy.testapp.TestApplication");
        httpAppTester.setInitParameter("resteasy.providers", "org.jboss.resteasy.plugins.providers.jackson.ResteasyJacksonProvider");
        httpAppTester.addEventListener(new ResteasyBootstrap());
        httpAppTester.addServlet(HttpServletDispatcher.class, "/*");

        httpAppTester.start();
    }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap

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.