@BeforeClass
public static void classSetUp() throws Exception {
String pathname = ConfigurationUrlImplTest.class.getResource("/conf.properties").getFile();
final File file = new File(pathname);
httpServer = new EmbeddedHttpServer(1528);
httpServer.mapping("/", file);
httpServer.start();
}