gpt4 book ai didi

java - 当返回json响应但正确返回xml响应时, Jersey 返回404未找到

转载 作者:行者123 更新时间:2023-12-02 13:38:12 27 4
gpt4 key购买 nike

代码在返回 xml 响应时运行,但在取消注释 jersey-media-moxy 并返回 JSON 响应后, postman 给我 404 not find 为什么?

我的消息资源类

@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>

最佳答案

最可能的原因是 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 资源方法上得到 404。

但实际上,您不想要错误页面。您确实想要 Http 状态。您被转发到错误页面的最可能原因是您需要设置属性

ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR

阅读链接,它会向您解释它的全部内容。您需要在 web.xml 或 ResourceConfig 中将此属性配置为 true。如果您使用的是 web.xml,则只需将其设置为 init-param 即可。常量的字符串值为

jersey.config.server.response.setStatusOverSendError

如果您使用ResourceConfig,只需在ResourceConfig 中调用property(key, value) 即可设置它。

关于java - 当返回json响应但正确返回xml响应时, Jersey 返回404未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42881282/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com