我需要在运行时将对象注册为 Jersey 服务。我已经通过 Spring applicationContext 尝试过,但它被注册为普通 bean。像这样的东西...
jerseyContainer.register(new Service());
@Path("/service")
public class Service{
@GET
public Thing get(){
return new Thing();
}
}
或者在 Spring 容器完成启动之前的某个方式。