是JavaEE的新手,在使用自定义ContainerRequestFilter在Jersey中运行时遇到了一些问题。我更多地阅读了球衣文档并直接从' jersey-quickstart-webapp '创建了一个新的干净项目,添加了下面看到的过滤器但是没有运气(也添加了一个空的beans.xml)。
import javax.ws.rs.container.ContainerRequestContext;
import javax.ws.rs.container.ContainerRequestFilter;
import javax.ws.rs.container.PreMatching;
import javax.ws.rs.core.Response;
import javax.ws.rs.ext.Provider;
import java.io.IOException;
@Provider
@PreMatching
public class MyFilter implements ContainerRequestFilter {
@Override
public void filter(ContainerRequestContext requestContext) throws IOException {
requestContext.abortWith(Response.status(Response.Status.UNAUTHORIZED).entity("User cannot access the resource.").build());
}
}
不确定Prematching和Provider是否是互补的,所以我分别使用了两者,但是没有用(MyReasource只是没有过滤器)。尝试在MyFilter中抛出一个异常但是没有运行。
所以我搜索了StackOverflow并找到了' http://blog.dejavu.sk/2013/11/19/registering-resources-and-providers-in-jersey-2/'这表明您实际上需要在Application或ResourceConfig类中实现注册。我尝试了这个(没有用)但是我现在至少得到了资源类的警告,' 没有找到资源类abMyFilter的资源方法 &# 39;
我的应用程序类现在看起来如下(尝试扫描包但没有区别。没有手动过滤器注册我也没有得到警告)。
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.server.ServerProperties;
import javax.ws.rs.ApplicationPath;
@ApplicationPath("resources")
public class RestApplication extends ResourceConfig {
public RestApplication() {
//packages("a.b");
register(MyFilter.class);
register(MyResource.class);
property(ServerProperties.TRACING, "ALL");
}
}
Web.xml中
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
</web-app>
的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>a.b</groupId>
<artifactId>server</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>server</name>
<build>
<finalName>server</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
</dependency>
</dependencies>
<properties>
<jersey.version>2.22.1</jersey.version>
<failOnMissingWebXml>false</failOnMissingWebXml>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
所有文件都在&#39; a.b&#39; (即我的包)root。关于如何让过滤器实际运行的任何想法,我将是非常伟大的;)。我认为不应该让这个工作变得困难,所以我想我在这里遗漏了什么?
答案 0 :(得分:1)
让我带您了解正在进行的事情。当您第一次创建jersey-quickstart-webapp
原型时,它为您提供了此
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>a.b</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
这个init-param jersey.config.server.provider.packages
所做的是告诉Jersey扫描用@Path
注释的资源类的哪些包,以及用@Provider
注释的提供者类。
从那时起,您需要做的就是将@Provider
添加到过滤器中,这样就可以了。
但后来您决定清除web.xml并将ResourceConfig
与@ApplicationPath
一起使用。为了实现这一点,Jersey利用了Servlet 3.0可插拔性机制,如上所述in this answer。为了实现这一点,我们需要确保我们拥有具有JerseyServletContainerInitializer
的jar。那就是我们需要查看pom.xml文件的地方
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
评论告诉您,如果您不需要Servlet 2.5支持,则应使用jersey-container-servlet
代替jersey-container-servlet-core
。我不知道,措辞可能不好。也许它应该说如果你想要Servlet 3.x支持,改变它。但无论如何,jersey-container-servlet
都有我们需要的JerseyContainerServletInitializer
。因此,如果您想减少web.xml,那么只需切换依赖项。