项目作者: lreimer

项目描述 :
Building Webservices with Java EE 8 - Packt Publishing Video Course Section 3
高级语言: Java
项目地址: git://github.com/lreimer/packtpub-building-javaee8-webservices-section.3.git
创建时间: 2018-03-29T19:31:13Z
项目社区:https://github.com/lreimer/packtpub-building-javaee8-webservices-section.3

开源协议:MIT License

下载


Building Web Services with Java EE 8
Section 3: Content Marshalling with JSON-B and JSON-P

Videos

Video 3.1: Introduction to Content-Types and Content Negotiation

In this video we are going to talk about Content-Types and Content Negotiation.

Method URI Status Description
GET /api/version 200 Get version string based on header
GET /api/documents/magic.gif 200 Get and display GIF
GET /api/documents/me.jpg 200 Get and download JPEG

Video 3.2: Easy Data Binding using JSON-B

In this video we are showing how to use JSON-B for easy data binding.

Method URI Status Description
GET /api/json-b/ 200 Marshall JSON-B annotated POJO
POST /api/json-b/ 204 Unmarshall and update JSON-B annotated POJO
GET /api/json-b/custom 200 Marshall custom POJO using Jsonb
POST /api/json-b/custom 204 Unmarshall custom POJO using Jsonb

Video 3.3: Flexible JSON processing with JSON-P

In this video we are showing how to use JSON-P for flexible JSON processing.

Method URI Status Description
GET /api/json-p/ 200 Marshall a JsonArray of JsonObject using JSON-P
POST /api/json-p/ 204 Unmarshall and Update a JsonArray of JsonObject using JSON-P
PATCH /api/json-p/ 204 Patch a JsonArray of JsonObject using JSON-P Pointer

Video 2.4: Implementing hypermedia-driven REST APIs

In this video we are showing how to build hypermedia-driven REST APIs.

Method URI Status Description
GET /api/hateos/books 200 Get a list of books
GET /api/hateos/books?authorId={authorId} 200 Get a list of books for given authorId
GET /api/hateos/books/{isbn} 200 Get a book by ISBN
GET /api/hateos/author 200 Get a list of authors
GET /api/hateos/author/{id} 200 Get an author by ID

Building and Running

  1. $ mvn clean verify
  2. $ docker build -t content-service:1.0 .
  3. $ docker run -it -p 8080:8080 content-service:1.0