Updated readmes to improve copy pastability

Also added instructions for native compilation for those apps that it is useful

Added documentation for native compilation when using Single Step Batch Processing

Updated documentaiton for native compilation for single app processing
This commit is contained in:
Glenn Renfro
2022-10-05 14:37:12 -04:00
parent 704667d542
commit b7b7de5337
13 changed files with 144 additions and 49 deletions

View File

@@ -9,18 +9,32 @@ metrics at the end of the application using the SimpleMeterRegistry.
== Classes:
* TaskMetricsApplication - the Spring Boot Main Application
* TaskObservationsApplication - the Spring Boot Main Application
== Build:
[source,shell,indent=2]
[source,shell]
----
$ mvn clean package
mvn clean package
----
== Run:
[source,shell,indent=2]
[source,shell]
----
$ java -jar target/task-metrics-3.0.0-SNAPSHOT.jar
java -jar target/task-observations-3.0.0.jar
----
== Native Build:
[source,shell]
----
mvn -Pnative clean package
----
== Native Run:
[source,shell]
----
./target/task-observations
----