5
在JAX-RS资源中获取ServletContext
我在玩JAX-RS,在Tomcat上部署。基本上是: @Path("/hello") @Produces({"text/plain"}) public class Hellohandler { @GET public String hello() { return "Hello World"; } } 有什么方法可以让我掌握ServletContextJAX-RS资源吗?