我正在尝试将请求过滤器的工作委托给 CDI bean。但是当我调用 RestURL 时,Glassfish 4.0 给了我一个例外。
过滤器定义
@Provider
@Authenticated
public class AuthenticationFilter implements ContainerRequestFilter{
@Inject
private AuthenticationService authenticationService;
@Override
public void filter(ContainerRequestContext containerRequestContext) throws IOException {
String token = containerRequestContext.getHeaderString("x-authentication-token");
if (!authenticationService.isAuthenticated(token)) {
containerRequestContext.abortWith(Response.serverError().entity("No authentication").build());
}
}
}
NameBinding 的定义,以便我们可以标记特定的资源 URL。
@NameBinding
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Authenticated {
}
以及 CDI bean 定义。
@ApplicationScoped
public class AuthenticationService {
public boolean isAuthenticated(String token) {
boolean result = false;
if (token != null && token.length() > 0) {
....
}
return result;
}
}
而且我在 WEB-INF 目录中有一个 bean.xml 文件
<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">
</beans>
谢谢鲁迪