Package com.sun.jersey.samples.jsonfromjaxb.resources

Examples of com.sun.jersey.samples.jsonfromjaxb.resources.FlightList


        providerList.add(new org.codehaus.jackson.jaxrs.JacksonJsonProvider());
//      providerList.add(new org.apache.cxf.jaxrs.provider.json.JSONProvider());
        bean.setProviders(providerList);
        List singletonRequestList = new ArrayList();
        singletonRequestList.add(new SingletonResourceProvider(new FlightList()));
        bean.setResourceProviders(singletonRequestList);

        bean.setAddress("http://localhost:9998/jsonfromjaxb/");
        bean.create();
    }
View Full Code Here

TOP

Related Classes of com.sun.jersey.samples.jsonfromjaxb.resources.FlightList

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.