tree: b576dbe3b0c18aed239288d545a6a4cbae186938 [path history] [tgz]
  1. application.properties
  2. CreateNewUser.java
  3. DeleteUserById.java
  4. GetAllUsers.java
  5. GetUserById.java
  6. Readme.md
  7. users.yaml
karavan-demo/rest-service/quarkus/Readme.md
  1. This example explains the setup of Rest service using Karavan
  2. This service listen on Nodeport 30011
  3. Supported Rest API's
    	| METHOD | PATH                                    | BODY             |RETURN   |
    	|--------|-----------------------------------------|------------------|---------|
    	| GET    | http://localhost:30011/v1/users         |                  |   200   |
    	| GET    | http://localhost:30011/v1/users/karavan |                  |   200   |
    	| DELETE | http://localhost:30011/v1/users/karavan |                  |   200   |
     | POST   | http://localhost:30011/v1/users         |{"name":"karavan"}|   202   |