Skip to content

wlybe/rest-apis-versioning-workshop

Β 
Β 

Repository files navigation

REST APIs Versioning: Hands-on !

This workshop aims to introduce different ways to handle and propose several versions of a same API to your customers.

🎯 Big picture

During this workshop we will strive with API versioning on a (small) microservice application. Here is a short description of it.

This platform aims to store and get books of a bookstore.

System View

C4Context
      title System Context diagram for Bookstore System
      Person(customerA, "Bookstore Customer", "A customer of the bookstore") 
      Person(adminA, "Bookstore Administrator", "An administrator of the bookstore") 
      Enterprise_Boundary(b0, "Bookstore Boundary") {
        System(bookstoreSystem, "Bookstore System", "Allows Book creation, search,...")  
        System(iamSystem, "Bookstore IAM", "Allows Identification & authorization...")  
      }
      Rel(customerA, bookstoreSystem, "Uses")
      Rel(adminA, bookstoreSystem, "Uses & manage users")
      Rel(customerA, iamSystem, "identifies & authorizes")
      Rel(adminA, iamSystem, "identifies & authorizes")
Loading

Explanations

Here we have two main kind of users:

  • Customer : He can browse and create books
  • Administrator: He can create books and activate/deactivate the maintenance mode

Within our platform, we have two main systems:

  • Bookstore system which operate all the book related operations
  • Bookstore IAM which is responsible for identifying and authorizing users

Container view

C4Container
      title Container Context diagram for Bookstore System


      Person(customerA, "Bookstore Customer", "A customer of the bookstore") 
      Person(adminA, "Bookstore Administrator", "An administrator of the bookstore") 

      Enterprise_Boundary(b0, "Bookstore Boundary") {
        Container_Boundary(b2,"Bookstore IAM"){
          Container(iam,"IAM","Provides a JWT token with roles in claims")

               }
        Container_Boundary(b1,"Bookstore System"){
            Container(bookstoreApi,"Bookstore API","Spring Boot, Cloud","Exposes the Bookstore APIs")
            Container(gateway,"API Gateway","Spring Cloud Gateway","Exposes the APIs")
            ContainerDb(database, "Database", "PostgreSQL Database", "Stores bookstore")
            Container(isbnApi,"ISBN","Spring Boot, Cloud","Exposes the ISBN APIs")
            Container(configuration,"Configuration Server","Spring Cloud Config","Exposes the configuration")
            Container(jaeger,"Jaeger","Jaeger","Gathers and provides distributed tracing")
            ContainerDb(monitoring, "Monitoring TSDB", "Prometheus", "Stores metrics")
        }
      }

      Rel(customerA,gateway, "Uses")
      Rel(adminA, gateway, "Uses & manage users")
      Rel(customerA, iam, "identifies & authorizes")
      Rel(adminA, iam, "identifies & authorizes")
      Rel(gateway, iam, "verify token")
      Rel(gateway, bookstoreApi, "exposes")
      Rel(gateway, isbnApi, "exposes")
      Rel(bookstoreApi, isbnApi, "uses")
      Rel(bookstoreApi, database, "stores data")
      UpdateLayoutConfig($c4ShapeInRow="3", $c4BoundaryInRow="1")
Loading

Explanations

This diagram dig into the systems exposed above in the system view.

The Bookstore system is composed of:

  • The API Gateway which exposes our APIs
  • The Bookstore API which exposes all the related book APIs and stores data to a PostgreSQL database
  • The ISBN API which provides random ISBN numbers
  • A Configuration server which centralizes all the configuration files

The Bookstore IAM is composed of:

  • A mock server which provides JWT token with appropriate roles and information

πŸ“ Stack

Here is a summary of the stack used in this workshop for this architecture:

Container Tools Comments
API Gateway Spring Cloud Gateway 2021.0.4
Bookstore API JAVA 17,Spring Boot 2.7.X
ISBN API JAVA 17,Spring Boot 2.7.X
Configuration Server Spring Cloud Config 2021.0.4
Database PostgreSQL
Authorization Server JAVA 17,Spring Boot 2.7.X, Spring Authorization Server 0.4.0

Customers

Our API Roadmap

%%{init: { 'logLevel': 'debug', 'theme': 'base', 'gitGraph': {'rotateCommitLabel': true}} }%%
gitGraph:
    commit id:"Init"
    commit id: "new features" tag:"Adding excerpt attribute & operation"
    branch V1
    checkout V1
    commit id:"add author list"
    commit id: "authorization V1"
    checkout main
    branch V2
    commit id: "revamping"
    checkout V1
    checkout V2
    commit id: "authorization"
    merge V1
    commit id: "Deprecating V1"
Loading

πŸš₯ Prerequisites

πŸŽ“ Skills

Skill Level
REST API proficient
Java novice
Gradle novice
Spring Framework, Boot, Cloud Config, Cloud Gateway Spring Authorization Server novice
OpenID Connect novice
Docker novice

πŸ”§ Tools

If you want to execute this workshop locally

You must have set up these tools first:

πŸš€ If you don't want to bother with a local setup

With Gitpod (recommended)

You can use Gitpod. You must create an account first. You then can open this project in either your local VS Code or directly in your browser:

Open in Gitpod

With Github Codespaces

You can also use Github Codespaces. You can create a new one by running "Code > Create codespace on main".

You have then to run the command in the shell:

pip install httpie
sdk install java 17.0.5-tem
sdk default java 17.0.5-tem

πŸ’₯ Ready ?

⚠️ I strongly suggest to fork this project into your personal GitHub namespace (aka your GitHub accounb). You then can change the URL mentioned above to link GitHub and Gitpod:

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#github.com/%%MY_NAMESPACE%%/rest-apis-versioning-workshop.git)

or you can directly browse this URL (think to change the %%MY_NAMESPACE%% prefix):

https://gitpod.io/#github.com/%%MY_NAMESPACE%%/rest-apis-versioning-workshop.git

Now, you can start the workshop.

About

Rest APIs Versioning

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 96.7%
  • Shell 3.3%