Skip to content

pilhuhn/microprofile-demo

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

MicroProfile Demo

Small demo application for MicroProfile 1.2

To build with WildFly Swarm you can run

$ mvn clean -Pswarm install
$ java -jar target/swarm-demo.jar

When the server is running you can invoke the application via

$ curl http://localhost:8080/hello

If you start the server with option -Dmp.what=<greeting> you can change the greeting text

$ mvn clean -Pswarm install
$ java -Dmp.what=Bonjour -jar target/swarm-demo.jar

Metrics are exposed under the /metrics endpoint and health data via /health.

Running on OpenShift

If you want to run the demo on OpenShift, you can use the openshift profile

E.g.

$ mvn clean -Pswarm,openshift fabric8:run

The endpoints

Health

You can hit /health to get the application health as per MicroProfile Health specification

Metrics

You can hit /metrics to get the metrics.

Application specific metrics are exposed under /metrics/application

Application , /hello

Note
this may be under a specific context root like /demo depending on the server you are using.
  • GET /hello: Return some greeting. Contents is dependent on the configuration as shown above.

  • GET /hello/health: Tries to call the /hello/slow service and uses MicroProfile Fault Tolerance to retry and fall back if the endpoint is too slow to respond

  • GET /hello/slow: returns a 204 no content response. The response may randomly be delayed.

  • POST /hello/unhealthy: sets the internal healthy flag to false so that a call to the MicroProfile Health endpoint will report as down.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages