Package net.lr.tutorial.karaf.cxf.personrest.impl

Examples of net.lr.tutorial.karaf.cxf.personrest.impl.PersonServiceImpl


    private static final String PERSONSERVICE_TESTURL = "http://localhost:8282/person";
    private static Server server;

    @BeforeClass
    public static void startServer() {
        PersonService personService = new PersonServiceImpl();;
        JAXRSServerFactoryBean factory = new JAXRSServerFactoryBean();
        factory.setAddress(PERSONSERVICE_TESTURL);
        factory.setServiceBean(personService);
        server = factory.create();
        server.start();
View Full Code Here

TOP

Related Classes of net.lr.tutorial.karaf.cxf.personrest.impl.PersonServiceImpl

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.