Publishing Jersey service instance to Grizzly
问题 I can publish a jersey service to grizzly by doing the following final String baseUri = "http://localhost:51000"; final Map<String, String> initParams = new HashMap<String, String>(); initParams.put("com.sun.jersey.config.property.packages", "my.rest.service"); SelectorThread threadSelector = GrizzlyWebContainerFactory.create(baseUri, initParams); So the specified package will be scanned for any service classes annotated with @Path , and they will be initialized. My question is, is there any