3

我尝试将我的应用程序部署到带有 Metro/Jersey 和 Glassfish 3.1.2 的 Tomcat 6,但访问 WebServiceContext 资源总是会导致空指针异常,除非我使用自动生成的 Glassfish 测试门户测试应用程序。

这是我编写的一个简单的测试方法来验证这一点:

import javax.annotation.Resource;
import javax.jws.WebService;
import javax.xml.ws.WebServiceContext;
import javax.xml.ws.handler.MessageContext;
import javax.servlet.ServletContext;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;

@WebService
@Path("/test")
public class Test {
    @Resource
    WebServiceContext wsContext;

    @GET
    @Produces("text/plain")
    @Path("/hello")
    public String hello() {
        MessageContext mc = wsContext.getMessageContext();   // NULL POINT HAPPENS HERE!
        ServletContext servletContext = (ServletContext) 
                mc.get(
                        MessageContext.SERVLET_CONTEXT);
        String s = servletContext.getRealPath("/WEB-INF");
        return "Real Path: " + s;
    }
}

这是相应的 web-xml(主要由 Eclipse 自动生成):

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>WebApp</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <description>JAX-RS Tools Generated - Do not modify</description>
    <servlet-name>JAX-RS Servlet</servlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>JAX-RS Servlet</servlet-name>
    <url-pattern>/jaxrs/*</url-pattern>
  </servlet-mapping>
</web-app>

最有趣的是,当我通过 Glassfish 生成的 URL 测试 TestService 时:

http://localhost:8080/WebApp/TestService?Tester

我可以通过提交表单来测试/调用“hello”方法并获取生成适当文件路径的有效 WebServiceContext 对象。不幸的是,实际上执行 HTTP GET 请求,例如

$curl -H "Accept: text/plain" http://localhost:8080/WebApp/jaxrs/test/hello

导致空指针堆栈跟踪指向 Test 类中的第 22 行(WebServiceContext)。

为什么 Web 服务可以在 Glassfish 测试工具中工作,而不是来自实际的 HTTP 请求?

更新:

如果您对 GlassFish 默认 URL 使用 GlassFish 默认 XML SOAP 请求,我能够确认 Web 服务工作正常(WebServiceContext 已正确注入),如下所示:

$curl -X POST -d @req.xml http://localhost:8080/ZlotyGlassfish/TestService --header "Content-Type:text/xml" 

其中文件“req.xml”的内容是匹配 WSDL 定义的请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:impl="http://impl.rest.webservice.webapp.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <impl:hello/>
   </soapenv:Body>
</soapenv:Envelope>

我的主要问题仍然是为什么这可以通过默认的 GlassFish 实现完美地工作,但是 @GET 和 @Path 符号生成的端点无法注入适当的 WebServiceContext 对象?

4

1 回答 1

5

不同之处在于默认的 GlassFish 实现是基于 JAX-WS SOAP 的Web 服务。对于 JAX-RS Web 服务,您应该使用以下注解来注入上下文。

 @Context 
 private ServletContext sc;

还有其他类型可以使用 @Context 注解注入,例如UriInfo, HttpHeaders。有关详细信息,请参阅泽西岛文档WebServiceContext并且MessageContext是在 JAX-RS 上下文中没有意义的 JAX-WS 对象。

于 2013-03-13T02:55:40.180 回答