gpt4 book ai didi

java - JAX-RS Jersey JSON GET HTTP 状态 500 内部服务器错误

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

我正在学习 JAX-RS,并且在发出生成 JSON 的 GET 请求时收到 HTTP Status 500 内部服务器错误。 XML 工作正常。

我搜索了其他问题,但找不到解决方案。这可能是因为我目前的知识匮乏。但是,根据我所读到的内容,有人建议我的项目在构建路径中缺少 JAR。

我没有使用 Maven。我刚刚在 Eclipse 中创建了一个动态 Web 应用程序,并将 JAX-RS/Jersey jar 添加到我的 WEB-INF/lib 目录中,并将它们添加到我的构建路径中。

我正在使用 Postman 来测试网络服务。我在发出请求时将 Accept 添加到 header :

接受:application/xml - 工作正常。接受:application/json - 内部服务器错误

这是我的(非常简单的代码)代码:

@XmlRootElement
public class Thing {

private String name;

public Thing(){}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

}

该服务设置为生成 XML 和 JSON。

@Path("/get")
public class Service {

@GET
@Path("/both")
@Produces({MediaType.APPLICATION_XML,MediaType.APPLICATION_JSON})
public Thing getThingResponses(){

Thing t = new Thing();
t.setName("I'm a thing!");
return t;

}


}

任何帮助/指示将不胜感激。谢谢

最佳答案

您可能忘记添加从 java 转换为 json 所需的所有依赖项。假设你使用的是maven,这里是你需要的(版本可能不是最新的,检查一下):

<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.webapp</groupId>
<artifactId>restservice</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>restservice Maven Webapp</name>
<url>http://maven.apache.org</url>


<dependencies>

<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>1.19.3</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.19.3</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>1.19.3</version>
</dependency>

</dependencies>
<build>
<finalName>restservice</finalName>
</build>
</project>

然后这里有 web.xml,它应该加载定义其余部分的类:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>com.vogella.jersey.first</display-name>
<servlet>
<servlet-name>jersey-servlet</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>org.restservice</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>jersey-servlet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>

最后还有一堆像你这样的方法:

package org.restservice;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

/**
* Created by paolo on 06/05/17.
*/
@Path("/hello")
public class Hello {

// This method is called if TEXT_PLAIN is request
@GET
@Produces(MediaType.TEXT_PLAIN)
public String sayPlainTextHello() {
return "Hello Jersey";
}

// This method is called if XML or JSON is request
@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Thing sayXMLorJSONHello() {
Thing t = new Thing();
t.setName("I'm a thing!");
return t;
}

// This method is called if HTML is request
@GET
@Produces(MediaType.TEXT_HTML)
public String sayHtmlHello() {
return "<html> " + "<title>" + "Hello Jersey" + "</title>"
+ "<body><h1>" + "Hello Jersey" + "</body></h1>" + "</html> ";

}

}

我在 tomcat 9 上测试了它,我使用的 URL 是:

本地主机:8080/休息/你好带标题:

accept: application/json
accept-encoding: gzip, deflate
accept-language: en-US,en;q=0.8
user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36

这是我得到的:

{
"name": "I'm a thing!"
}

祝你好运。

更新:好吧,您没有使用 maven,我们将在项目的 lib 文件夹中添加相同的 jar...或者开始使用 maven ;-)

关于java - JAX-RS Jersey JSON GET HTTP 状态 500 内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43825196/

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