tree: 54b691015d90471435c1416a681223bf6b2a7d51 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
kogito-quarkus-examples/dmn-incubation-api-quarkus/README.md

DMN Incubation API

Description

This quickstart project demonstrate how to use the Kogito Public API (Incubation). It disables the predefined generated REST endpoint and instead uses the Public API to define a custom HTTP resource.

The custom REST endpoint evaluates a DMN that computes Traffic Violation:

  • it expects the violation as the payload of the REST
  • it returns the result as a payload of the REST response
  • this quickstart uses the public API to define a custom REST endpoint instead of codegen

Incubation means that this API is experimental, but it is part of a regular release for early access and to gather community feedback.

Build and run

Prerequisites

You will need:

  • Java 17+ installed
  • Environment variable JAVA_HOME set accordingly
  • Maven 3.9.6+ installed

Compile and Run in Local Dev Mode

mvn clean compile quarkus:dev

NOTE: With dev mode of Quarkus you can take advantage of hot reload for business assets like processes, rules, decision tables and java code. No need to redeploy or restart your running application.

Package and Run in JVM mode

mvn clean package
java -jar target/quarkus-app/quarkus-run.jar

OpenAPI (Swagger) documentation

Specification at swagger.io

You can take a look at the OpenAPI definition - automatically generated and included in this service - to determine all available operations exposed by this service. For easy readability you can visualize the OpenAPI definition file using a UI tool like for example available Swagger UI.

In addition, various clients to interact with this service can be easily generated using this OpenAPI definition.

When running in either Quarkus Development or Native mode, we also leverage the Quarkus OpenAPI extension that exposes Swagger UI that you can use to look at available REST endpoints and send test requests.

Submit a request

To make use of this application it is as simple as sending a request to http://localhost:8080/custom-rest-decision with the following content

{
    "Driver": {
        "Points" : 2
    },
    "Violation": {
        "Type" : "speed",
        "Actual Speed" : 120,
        "Speed Limit" : 100
    }
}

Complete curl command can be found below:

curl -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' -d '{"Driver":{"Points":2},"Violation":{"Type":"speed","Actual Speed":120,"Speed Limit":100}}' http://localhost:8080/custom-rest-decision

Response should be similar to:

{
   "Driver" : {
      "Age" : null,
      "City" : null,
      "Name" : null,
      "Points" : 2,
      "State" : null
   },
   "Fine" : {
      "Amount" : 500,
      "Points" : 3
   },
   "Should the driver be suspended?" : "No",
   "Violation" : {
      "Actual Speed" : 120,
      "Code" : null,
      "Date" : null,
      "Speed Limit" : 100,
      "Type" : "speed"
   }
}