https://github.com/soujava/microstream-jakarta-persistences
A Microstream integration with Jakarta Persistences
https://github.com/soujava/microstream-jakarta-persistences
Last synced: 3 months ago
JSON representation
A Microstream integration with Jakarta Persistences
- Host: GitHub
- URL: https://github.com/soujava/microstream-jakarta-persistences
- Owner: soujava
- License: apache-2.0
- Created: 2023-04-04T10:37:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-04T17:13:23.000Z (about 2 years ago)
- Last Synced: 2025-01-27T10:45:04.869Z (5 months ago)
- Language: Java
- Size: 18.6 KB
- Stars: 3
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# MicroProfile generated Application
## Introduction
MicroProfile Starter has generated this MicroProfile application for you.
The generation of the executable jar file can be performed by issuing the following command
```shell
mvn clean package
```This will create an executable jar file **microstream-persistence.jar** within the _target_ maven folder. This can be started by executing the following command
```shell
java -jar target/microstream-persistence.jar
```### Liberty Dev Mode
During development, you can use Liberty's development mode (dev mode) to code while observing and testing your changes on the fly.
With the dev mode, you can code along and watch the change reflected in the running server right away;
unit and integration tests are run on pressing Enter in the command terminal; you can attach a debugger to the running server at any time to step through your code.```shell
mvn liberty:dev
```To launch the test page, open your browser at the following URL
```shell
http://localhost:9080/index.html
```