我使用AppFuse创建了一个基本的应用程序shell,并在AppFuse tutorial之后使用Jax-RS创建了一个简单的RESTful服务。这很好用。对http://localhost:8080/services/api/persons
的调用将Person对象的集合作为具有正确数据的Json格式字符串返回。
我现在想要从Appfuse公开的RESTful服务中访问ServletRequest
和ServletResponse
个对象(使用另一个需要这些对象的库)。
我认为应该通过添加@Context注释来实现,例如:遵循此StackOverflow post和此forum post。
但是如果我添加@Context标记(见下文),它编译得很好但在服务器重新启动时抛出异常(附在底部)。
以下是@WebService
的声明:
@WebService
@Path("/persons")
public interface PersonManager extends GenericManager<Person, Long> {
@Path("/")
@GET
@Produces(MediaType.APPLICATION_JSON)
List<Person> read();
...
}
这是实现类,我想我会调用@Context
注释:
@Service("personManager")
public class PersonManagerImpl extends GenericManagerImpl<Person, Long> implements PersonManager {
PersonDao personDao;
@Context ServletRequest request; // Exception thrown on launch if this is present
@Context ServletContext context; // Exception thrown on launch of this is present
...
}
希望我错过了一些简单的东西,要么包含一些东西以使其工作,要么意识到获得ServletRequest是不可能的,因为......任何线索都是受欢迎的。
我在IntelliJ中的Tomcat上运行它。
=== EXCEPTION STACK TRACE(截断)===
Caused by: org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'serviceBeans' threw exception; nested exception is java.lang.RuntimeException: java.lang.NullPointerException
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:102)
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:58)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1358)
... 37 more
答案 0 :(得分:40)
尝试直接注入HttpServletRequest
和HttpServletContext
:
@Context private HttpServletRequest servletRequest;
@Context private HttpServletContext servletContext;
答案 1 :(得分:27)
将其添加到方法签名中。我想这是因为当实例化类时,请求和响应对象还不存在,但是当被浏览器调用时,它就会存在。
@Path("/")
@GET
@Produces(MediaType.APPLICATION_JSON)
List<Person> read( @Context HttpServletRequest httpServletRequest, @Context HttpServletResponse httpServletResponse) { }