溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)

發(fā)布時(shí)間:2020-12-01 16:42:57 來(lái)源:億速云 閱讀:164 作者:Leah 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

1.創(chuàng)建maven-web工程,后面就是正常的maven工程創(chuàng)建流程。

Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)

2.添加Jersey框架的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>com.restful</groupId>
 <artifactId>jerseyDemo</artifactId>
 <packaging>war</packaging>
 <version>1.0-SNAPSHOT</version>
 <name>jerseyDemo Maven Webapp</name>
 <url>http://maven.apache.org</url>
 <dependencies>
 <dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>3.8.1</version>
  <scope>test</scope>
 </dependency>
 <dependency>
  <groupId>org.glassfish.jersey.containers</groupId>
  <artifactId>jersey-container-servlet</artifactId>
  <version>2.9</version>
 </dependency>
 <dependency>
  <groupId>org.glassfish.jersey.core</groupId>
  <artifactId>jersey-client</artifactId>
  <version>2.9</version>
 </dependency>
 <dependency>
  <groupId>org.glassfish.jersey.media</groupId>
  <artifactId>jersey-media-json-jackson</artifactId>
  <version>2.9</version>
 </dependency>
 <dependency>
  <groupId>com.sun.jersey</groupId>
  <artifactId>jersey-client</artifactId>
  <version>1.19.3</version>
 </dependency>
 </dependencies>
 <build>
 <finalName>jerseyDemo</finalName>
 </build>
</project>

3.Restful接口定義。

package com.restful.service;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.restful.entity.PersonEntity;

import javax.ws.rs.*;
import javax.ws.rs.core.MediaType;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Created by XuHui on 2017/8/2.
 */
@Path("/JerseyService")
public class JerseyService {
 private static Map<String, PersonEntity> map = new HashMap<String, PersonEntity>();

 @GET
 @Path("/getAllResource")
 @Produces(MediaType.APPLICATION_JSON)
 public String getAllResource() throws JsonProcessingException {
  List<PersonEntity> list = new ArrayList<PersonEntity>();
  for (PersonEntity entity : map.values()) {
   list.add(entity);
  }

  ObjectMapper mapper = new ObjectMapper();
  return mapper.writeValueAsString(list);
 }

 @GET
 @Path("/getResourceById/{id}")
 @Produces(MediaType.APPLICATION_JSON)
 public String getResource(@PathParam("id") String id) throws JsonProcessingException {
  ObjectMapper mapper = new ObjectMapper();
  return mapper.writeValueAsString(map.get(id));
 }

 @POST
 @Path("/addResource/{person}")
 @Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
 @Produces(MediaType.APPLICATION_JSON)
 public String addResource(String person) throws IOException {
  ObjectMapper mapper = new ObjectMapper();
  PersonEntity entity = mapper.readValue(person, PersonEntity.class);
  map.put(entity.getId(), entity);
  return mapper.writeValueAsString(entity);
 }

 @GET
 @Path("/getRandomResource")
 @Produces(MediaType.APPLICATION_JSON)
 public String getRandomResource() throws JsonProcessingException {
  ObjectMapper mapper = new ObjectMapper();
  PersonEntity entity = new PersonEntity("NO1", "Joker", "http:///");
  return mapper.writeValueAsString(entity);
 }
}

PersonEntity實(shí)體類(lèi)實(shí)現(xiàn)。

package com.restful.entity;

/**
 * Created by XuHui on 2017/8/2.
 */
public class PersonEntity {
 private String id;
 private String name;
 private String addr;

 public PersonEntity() {
 }

 public PersonEntity(String id, String name, String addr) {
  this.id = id;
  this.name = name;
  this.addr = addr;
 }

 public String getId() {
  return id;
 }

 public void setId(String id) {
  this.id = id;
 }

 public String getName() {
  return name;
 }

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

 public String getAddr() {
  return addr;
 }

 public void setAddr(String addr) {
  this.addr = addr;
 }

 @Override
 public String toString() {
  return "PersonEntity{" +
    "id='" + id + '\'' +
    ", name='" + name + '\'' +
    ", addr='" + addr + '\'' +
    '}';
 }
}

4.web.xml配置。

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
 <display-name>Archetype Created Web Application</display-name>
 <servlet>
 <servlet-name>Jersey RESTful Application</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.restful</param-value>
 </init-param>
 </servlet>
 <servlet-mapping>
 <servlet-name>Jersey RESTful Application</servlet-name>
 <url-pattern>/rest/*</url-pattern>
 </servlet-mapping>
</web-app>

5.搭建本地tomcat

Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)

6.運(yùn)行結(jié)果、http://localhost:8080/jerseyDemo/rest/application.wadl是所有對(duì)外接口的調(diào)用方法。使用postman來(lái)看看這個(gè)接口是怎么調(diào)用的吧。

POST請(qǐng)求

Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)

GET請(qǐng)求

Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)

關(guān)于Restful服務(wù)如何利用Jersey來(lái)實(shí)現(xiàn)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI