代码在返回xml响应时运行但在取消注释jersey-media-moxy
并返回JSON响应后,邮递员给我404找不到原因?
我的消息资源类
@Path("messages")
public class MessageResource {
MessageService service = new MessageService();
@GET
@Produces(MediaType.APPLICATION_JSON)
public List<MessageModel> getMessage() {
return service.allMessages();
}
@GET
@Path("{messageId}")@Produces(MediaType.APPLICATION_JSON)
public MessageModel getMessage(@PathParam("messageId") int id) {
return service.getMessage(id);
}
}
我的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>org.wiza.ws</groupId>
<artifactId>messenger</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>messenger</name>
<build>
<finalName>messenger</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.16</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
答案 0 :(得分:1)
最可能的原因是JSON序列化发生错误,MOXy发生错误。错误是什么,谁知道。您还没有提供足够的信息来确定这一点。我建议注册一个通用的ExceptionMapper
。
@Provider
public class DebugMapper implements ExeptionMapper<Throwable> {
@Override
public Response toResponse(Throwable t) {
t.printStackTrace();
return Response.serverError()
.entity(t.getMessage())
.build();
}
}
在您的应用程序中注册此内容后,如果 错误尚未由另一个异常映射器处理,您应该看到堆栈跟踪。
就404而言,这很可能是因为您没有设置错误页面。因此,当servlet容器正在查找错误页面时,您将在错误页面上获得404,而不是在Jersey资源方法上获得。
但实际上,您并不想要错误页面。你真的想要Http状态。您转发到错误页面的最可能原因是您需要设置属性
阅读链接,它将向您解释它的全部内容。您需要在web.xml或true
中将此属性配置为ResourceConfig
。如果您正在使用web.xml,则只需将其设置为init-param即可。常量的字符串值是
jersey.config.server.response.setStatusOverSendError
如果您使用的是ResourceConfig
,只需在ResourceConfig中调用property(key, value)
即可设置它。