自数小时以来,我一直在尝试纠正http错误,415 Unsupported Media Type但它仍显示不支持的页面。我application/json在邮递员中添加标题。
415 Unsupported Media Type
application/json
这是我的Java代码
package lostLove; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import org.json.JSONObject; @Path("/Story") public class Story { @POST @Consumes({"application/json"}) @Produces(MediaType.APPLICATION_JSON) // @Consumes(MediaType.APPLICATION_JSON) // @Path("/Story") public JSONObject sayJsonTextHello(JSONObject inputJsonObj) throws Exception { String input = (String) inputJsonObj.get("input"); String output = "The input you sent is :" + input; JSONObject outputJsonObj = new JSONObject(); outputJsonObj.put("output", output); return outputJsonObj; } @GET @Produces(MediaType.TEXT_PLAIN) public String sayPlainTextHello() { return "hello"; } }
这是我的web.xml档案
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>LostLove</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>Jersey REST Service</servlet-name> <servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class> <init-param> <param-name>jersey.config.server.provider.packages</param-name> <param-value>lostLove</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>Jersey REST Service</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping> </web-app>
通过MessageBodyWriters和MessageBodyReaders如何在响应流和请求流之间对对象进行序列化和反序列化。
MessageBodyWriters
MessageBodyReaders
将会发生的是,将从提供者的注册表中进行搜索,以查找可以处理的JSONObject媒体类型application/json。如果找不到,则Jersey无法处理该请求,并将发送415不支持的媒体类型。通常,你还应该在服务器端记录一个异常。不知道你是否有机会查看日志。
JSONObject
泽西岛没有任何标准的读写器org.json。你将不得不在网上搜索一种实现或自己编写一个实现,然后进行注册。你可以在此处阅读有关如何实现它的更多信息。
org.json
或者,你可以接受一个String并返回一个String。只需JSONObject使用string参数构造,然后JSONObject.toString()在返回时调用即可。
String
string
JSONObject.toString()
@POST @Consumes("application/json") @Produces("application/json") public String post(String jsonRequest) { JSONObject jsonObject = new JSONObject(jsonRequest); return jsonObject.toString(); }
我的建议是使用像Jackson那样的数据绑定框架,该框架可以处理模型对象(简单的POJO)之间的序列化和反序列化。例如你可以有一个像
public class Model { private String input; public String getInput() { return input; } public void setInput(String input) { this.input = input; } }
你可以将Modelas作为方法参数
Modelas
public ReturnType sayJsonTextHello(Model model)
相同ReturnType。只需为要返回的类型创建一个POJO。JSON属性基于JavaBean属性名称(遵循上面显示的命名约定的getter / setter)。
ReturnType
POJO
JSON
JavaBean
getter / setter
要获得此支持,可以添加以下Maven依赖项:
<dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-json-jackson</artifactId> <version>2.17</version> <!-- make sure the jersey version matches the one you are using --> </dependency>
或者,如果你不使用Maven,则可以查看此帖子,你可以独立下载jar。