public static void main(String[] args) throws IOException {
Config.Builder b = new Config.Builder();
b.resource("./app")
.initParam("com.sun.jersey.config.property.packages", NettoSphere.class.getPackage().getName())
.initParam(DISABLE_ATMOSPHEREINTERCEPTOR, "true")
.interceptor(new SwaggerSocketProtocolInterceptor())
.port(8080)
.host("127.0.0.1")
.build();
Nettosphere s = new Nettosphere.Builder().config(b.build()).build();
s.start();