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();