我对Java EE Web服务的@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服务不同).编程环境:
>日食
> 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,它是否也无法工作-就像我的其他项目一样?).有人知道未调用我带注释的@AroundInvoke方法的原因吗?
解决方法:
我已经解决了这个问题.根据我在互联网上研究/收集的内容:
javax.interceptor.Interceptors may be bound to a simple Web Bean,
enterprise Web Bean or EJB 3 style session, singleton or message
driven bean using the javax.interceptor.Interceptors annotation, or by
using a Web Beans interceptor binding.
不使用JBoss时似乎也是如此.问题是,每次我将@Stateless添加到HelloWorld类时,都无法使用添加@Stateless批注之前使用的URL来访问Web服务.由于我看到了将@Stateless和@Webservice一起使用的其他示例,因此我更深入地挖掘了一点,并发现了此错误报告:
@WebService and @Stateless not showing endpoint in GlassFish 4.0 admin console
似乎通过使用@Stateless批注,Web服务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