This is a project for getting to know the technology stack at work. It uses JavaEE and a Postgres DB to build a backend for a non-existing frontend application.
- Have Docker and Maven installed locally
git clone [email protected]:Lenoxy/javaee-list-backend.git
cd javaee-list-backend
mvn package
- To enable the optional debug mode, uncomment line 13 (
COPY --chown=1001:0 jvm.options /config/jvm.options
) in the/Dockerfile
docker compose up -d
- If the debug mode has been enabled before, the debugger can now be attached on port
7777
. - Use the
/api.http
file to test the backend or any other tool on the backend running on localhost:8080
- Optionally you can find an IntelliJ run config at
/.run/RUN.run.xml
. It invokes the Maven build and starts the containers.