Java EE Web服务:@AroundInvoke不起作用

时间:2014-07-17 09:19:28

标签: java web-services java-ee glassfish

我对Java EE Webservices的@AroundInvoke有疑问: 我使用这个类作为REST服务的拦截器(它正在工作):

public class AuthenticationInterceptor {

  @AroundInvoke
  public Object invoke(InvocationContext ctx) throws Exception {
    if (ctx != null) {
      // do stuff ...
      return ctx.proceed();
    } else {
      return null;
    }
  }

}

我现在正在尝试将此类用于我实现的Web服务(SOAP)。出于调试目的,我创建了一个简化项目,它只有一个类:

@WebService
@Interceptors(AuthenticationInterceptor.class)
public class HelloWorld {

  @WebMethod
  @Interceptors(AuthenticationInterceptor.class)
  public String sayHello(String name) {
    return "Hello " + (name == null ? "" : name) + " !";
  }

}

当我在glassfish服务器(3.1.1)上部署生成的.war文件时,Web服务可用,但是 - 使用远程调试 - 不会调用带注释的方法调用(与使用我的REST服务时不同)。编程环境:

  • 的Eclipse
  • Maven(依赖项:glassfish-embedded-all,javaee-api,junit)
  • Glassfish服务器3.1.1

为了记录:我也厌倦了将一个beans.xml添加到项目中(虽然这对我的REST项目来说不是必需的) - 因为这个xml文件,glassfish会抛出:  部署期间发生错误:关闭应用程序容器时出现异常:java.lang.NullPointerException

beans.xml中:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
       http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
       bean-discovery-mode="all">

       <interceptors>
        <class>com.sjd.simple.AuthenticationInterceptor</class>
       </interceptors>
</beans>

(在没有beans.xml的情况下,它是否也可以工作 - 就像我的其他项目一样?)。 Doese任何人都知道我没有调用带注释的@AroundInvoke方法的原因吗?

1 个答案:

答案 0 :(得分:3)

我自己解决了这个问题。根据我在互联网上研究/收集的内容:

  

javax.interceptor.Interceptors可以绑定到一个简单的Web Bean,   企业Web Bean或EJB 3样式会话,单例或消息   使用javax.interceptor.Interceptors注释驱动bean,或者使用   使用Web Beans拦截器绑定。

不使用JBoss时似乎也是如此。问题是每次我将@Stateless添加到我的HelloWorld类时,在添加@Stateless注释之前,我无法使用我使用的URL访问Webservice。自从我看到@Stateless和@Webservice在一起使用的其他示例之后,我挖了一小部分并且遇到了这个错误报告:

@WebService and @Stateless not showing endpoint in GlassFish 4.0 admin console

似乎通过使用@Stateless注释,webservice url从:

更改
http://localhost:8080/<application_name>/<class_name>Service?wsdl      to
http://localhost:8080/<class_name>Service/<class_name>?wsdl

在我的例子中:

http://localhost:8080/simple-jax-ws/HelloWorldService?wsdl    [without @Stateless]
http://localhost:8080/HelloWorldService/HelloWorld?wsdl       [with @Stateless]

我希望这个答案可以帮助别人。我还发了一篇博文,以防有人搜索我使用的源代码:blog post