Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

fxrobin/api-impl-demo

Open more actions menu

Repository files navigation

Codacy Badge Gitpod ready-to-code Java CI with Maven Maven Package CodeFactor

api-impl-demo

A simple REST API following REST best practices.

This project uses Quarkus.

Note: this project can be built in native mode with graal-vm, but it cannot be executed due to embedded H2. H2 cannot be executed in native mode up to now. (not supported feature by Quarkus).

How to run

Dev mode

$ ./mvnw quarkus:dev

Then open a browser http://localhost:8080/openapi-ui

Production mode UBER-JAR

Generating the uber-jar:

$ ./mvnw package -Dquarkus.package.type=uber-jar

then run it:

$ java -jar ./target/api-impl-demo-[version]-SNAPSHOT-runner.jar

then browse to:

  • Start page : http://localhost:8080/api-impl-demo
  • OpenApi UI : http://localhost:8080/api-impl-demo/openapi-ui
  • Health UI: http://localhost:8080/api-impl-demo/health-ui

Tech links:

  • OpenApi definition : http://localhost:8080/api-impl-demo/v1/openapi
  • Health: http://localhost:8080/api-impl-demo/v1/health
  • Metrics: http://localhost:8080/api-impl-demo/v1/metrics

Basic request:

  • API : http://localhost:8080/api-impl-demo/v1/api/video-games?page=0&size=100

Examples

HEAD /api-impl-demo/v1/api/video-games

HTTP/1.1 204 No Content
Resource-Count: 1619
connection: keep-alive

GET /api-impl-demo/v1/api/video-games?page=5&size=10

{
  "metadata": {
    "currentPage": 5,
    "pageCount": 162,
    "resourceCount": 1619
  },
  "data": [
    {
      "id": "0ee652a8-0222-4da7-9623-f35b57a7a914",
      "name": "AIRLINE ST",
      "genre": "simulation",
      "version": 0
    },
    {
      "id": "01e495ad-cb28-472f-94a6-3170395cc9b4",
      "name": "AIRLINE ST II",
      "genre": "simulation",
      "version": 0
    },
    {
      "id": "07638287-8f45-4be8-a887-c57f350a9ce7",
      "name": "ALBEDO",
      "genre": "shoot-them-up",
      "version": 0
    },
    {
      "id": "46368d7e-c439-4da8-82fb-f2f8afb09ddc",
      "name": "ALBION",
      "genre": "rpg",
      "version": 0
    },
    {
      "id": "0a8e24b3-7e37-4532-8de4-b82b6ae441a2",
      "name": "ALCANTOR",
      "genre": "arcade",
      "version": 0
    },
    {
      "id": "6c8b0256-c771-4a03-8324-70ce6674933f",
      "name": "ALCATRAZ",
      "genre": "simulation",
      "version": 0
    },
    {
      "id": "56417168-1e57-4197-a490-56258e5405eb",
      "name": "ALCON",
      "genre": "shoot-them-up",
      "version": 0
    },
    {
      "id": "772a7578-b276-487d-8d61-e2ab824da2b3",
      "name": "ALF : THE FIRST ADVENTURE",
      "genre": "reflexion",
      "version": 0
    },
    {
      "id": "d5bd6aaa-674d-4e7f-ae8e-53118de897c6",
      "name": "ALIEN BLAST",
      "genre": "shoot-them-up",
      "version": 0
    },
    {
      "id": "2589d502-4619-4728-b688-9cece2a8a3ab",
      "name": "ALIEN BUSTERS IV",
      "genre": "shoot-them-up",
      "version": 0
    }
  ]
}

GET /api-impl-demo/v1/api/video-games/098d7670-ac32-49e7-9752-93fb1d16d495

{
  "id": "098d7670-ac32-49e7-9752-93fb1d16d495",
  "name": "BIONIC COMMANDO",
  "genre": "shoot-them-up",
  "version": 0
}

GET /api-impl-demo/v1/api/video-games?page=5&size=10&name=like:xeno

{
  "metadata": {
    "currentPage": 0,
    "pageCount": 1,
    "resourceCount": 3
  },
  "data": [
    {
      "id": "8642b67f-140f-4feb-a860-e391a11cdae5",
      "name": "XENOMORPH",
      "genre": "rpg",
      "version": 0
    },
    {
      "id": "c7b81d89-8da4-4abe-baed-03098861ed26",
      "name": "XENON",
      "genre": "shoot-them-up",
      "version": 0
    },
    {
      "id": "b557289b-1b66-4a1b-9804-c77daecbad5a",
      "name": "XENON 2 : MEGABLAST",
      "genre": "shoot-them-up",
      "version": 0
    }
  ]
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.