This project was implemented by @themaxens in the computer science course (year 2020) at the DHBW Mosbach. The task was completed as part of a student's project work.
- What is the project about?
- Technologies
- Documentation
- Dev Container - Prerequisites
- Running the application in dev mode
- Packaging and running the application
- Creating a native executable
- Contribution
In this project, a Reactive RESTful Web Service was implemented, which calculates the life time of ball bearings in an O-arrangement. The usual CRUD operations (Create, Read, Update and Delete) are available.
The software was designed according to the architectural pattern of Hexagonal Architecture which is based on ports and adapters. The book "Designing Hexagonal Architecture with Java" by Davi Vieira gives a good overview of the concepts of hexagonal architecture.
This project uses Quarkus, the Supersonic Subatomic Java Framework. If you want to learn more about Quarkus, please visit its website: https://quarkus.io/.
Additional technologies used:
- Gradle as a build tool
- PostgreSQL database
- Hibernate as an object-relational mapper
- Docker (used for development containers)
- quarkus-junit5 and rest-assured for testing the application - the implemented test cases are located here
Have a look at the dependencies in
build.gradle
for a complete overview.
There is also a detailed documentation (written in latex) for this project. Have a look at the file content.tex.
The corresponding PDF file can be found in this repo under the tab Actions
. Select the top pass of the workflow compile-latex
and then navigate to Artifacts
. There you can download the associated PDF with the name INF20B_Max_4706893_T3101.
The Github workflow always generates a new PDF if there is a change in the /docs folder during a pull request (see Contribution).
You can develop the application in a development container, in which all necessary dependencies have already been resolved. You can start right away with coding.
To do this, the following tools must be installed:
Also have a look at chapter 3 (Remote development) in the latex documentation for more information.
You can run your application in dev mode that enables live coding using:
./gradlew quarkusDev
NOTE: Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
The application can be packaged using:
./gradlew build
It produces the quarkus-run.jar
file in the build/quarkus-app/
directory.
Be aware that it’s not an über-jar as the dependencies are copied into the build/quarkus-app/lib/
directory.
The application is now runnable using java -jar build/quarkus-app/quarkus-run.jar
.
If you want to build an über-jar, execute the following command:
./gradlew build -Dquarkus.package.type=uber-jar
The application, packaged as an über-jar, is now runnable using java -jar build/*-runner.jar
.
You can create a native executable using:
./gradlew build -Dquarkus.package.type=native
Or, if you don't have GraalVM installed, you can run the native executable build in a container using:
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true
You can then execute your native executable with: ./build/ball-bearings-with-quarkus-1.0.0-SNAPSHOT-runner
If you want to learn more about building native executables, please consult https://quarkus.io/guides/gradle-tooling.
Here, you will find the contribution guide.