Jersey JSON不适用于最新的Jersey API

时间:2016-11-16 09:46:19

标签: java json rest jersey

我已经通过几个链接搞清楚如何在使用Jersey创建的RESTful Web服务中返回JSON响应。这是我的代码:

的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>ScraperWebProject</display-name>
  <welcome-file-list>
    <welcome-file>index.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>com.myscraper</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>

MyScraper.java

package com.myscraper;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;


@Path("/hello")
public class MyScraper {

    @GET
    @Produces( {MediaType.APPLICATION_JSON })
    public SearchModel sayJsonHello() {
        System.out.println("JSON text hello called");
        SearchModel s = new SearchModel("My First Search", "My first search is done");
        return s;
    }

    @GET
    @Produces( { MediaType.TEXT_XML })
    public SearchModel sayPlainTextHello() {
        System.out.println("Plain text hello called");
        SearchModel s = new SearchModel("My First Search", "My first search is done");
        return s;
    }
}

SearchModel.java

package com.myscraper;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class SearchModel {

    private String title;
    private String description;

    public SearchModel(){

    }
    public SearchModel(String title,String desc){
        this.title = title;
        this.description= desc;

    }

    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }

    @Override
    public String toString() {
        return "SearchModel [title=" + title + ", desc=" + description + "]";
    }
}

我无法将请求映射到getJSONHello()方法。在此Link找到的解决方案说使用Jersey JSON,但提供的xml对最新的Jersey版本无效。它使用com.sun关系属性,该属性仅对旧版Jersey有效。

2 个答案:

答案 0 :(得分:1)

您需要为Jersey 2

添加以下依赖项
<dependency>
    <groupId>org.glassfish.jersey.media</groupId>
    <artifactId>jersey-media-json-jackson</artifactId>
    <version>${jersey2.version}</version>
</dependency>

答案 1 :(得分:0)

<pre>call api by link     /rest/hello/sayJsonHello  etc. By  Get method because it needs complete path for method sayJsonHello</pre>




package com.myscraper;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.MediaType;


    @Path("/hello")
    public class MyScraper {

        @GET
    @Path("/sayJsonHello")
        @Produces( {MediaType.APPLICATION_JSON })
        public SearchModel sayJsonHello() {
            System.out.println("JSON text hello called");
            SearchModel s = new SearchModel("My First Search", "My first search is done");
            return s;
        }

        @GET
    @Path("/sayPlainTextHello")
        @Produces( { MediaType.TEXT_XML })
        public SearchModel sayPlainTextHello() {
            System.out.println("Plain text hello called");
            SearchModel s = new SearchModel("My First Search", "My first search is done");
            return s;
        }
    }