Skip to content
/ java-api-template Public template

Template for a Java API, using Spring Boot, Spring Data JPA, Spring Security, and JWT.

Notifications You must be signed in to change notification settings

JuArce/java-api-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Api Template ☕

This is a template for a Java API, using Spring Boot, Spring Data JPA, Spring Security, and JWT.

The API is a simple CRUD for a User entity.

Next Steps 🚀

  • Add unit tests in the service layer
  • Integrate Spring Security and JWT authentication
  • Implement user roles
  • Implement ACL
  • Add integration tests
  • Add Dockerfile
  • Add Swagger documentation

Requirements 📋

  • Java 21 ☕
  • Maven 🔧
  • Docker 🐳
  • Postgres 🐘

Setup 🔨

make install or mvn clean install

Database Setup 💾

Create Database Container 🐋

This API uses a postgres database. To set up the database, run the following command:

make create_db container=<container> user=<user> password=<pwd> database=<db_name>

Where:
- container:    the name of the docker container. If not provided, the default value is 'postgres'
- user:         the user to create. If not provided, the default value is 'user'
- password:     the password for the user. If not provided, the default value is '123123123'
- database:     the name of the database to create. If not provided, the default value is 'java_api_template'

Run Database Container 🏹

If you want to run or re-run the database in a different container, you can use the following command:

make run_db container=<container>

Where:
- container:    the name of the docker container. If not provided, the default value is 'postgres'

Stop Database Container 🛑

If you want to stop the database container, you can use the following command:

make stop_db container=<container>

Where:
- container:    the name of the docker container. If not provided, the default value is 'postgres'

Tests will run using an in-memory HSQL database, so there is no need to create a database for tests.

Security Configuration 🔒

This API uses Basic and JWT authentication.

To configure the security, you need to create a file named jwk_set.json in the resources folder. This file must contain a JWK Set, with at least one key.

You can use the online JSON Web Key generator to generate a JWK Set: . Or using the Command line JSON Web Key (JWK) generator.

The Jwk set must be in the following format:

{
    "keys": [
        {
            "kty": "EC",
            "d": "HSveA5XkSWeaJeg79AsXlghcfFAqbBNG1Ep51QKptOY",
            "crv": "P-256",
            "x": "Dmh5T6s69NLhGKv1nE_-gl36h9s6hvGttn5m91G9jnY",
            "y": "l8C-AGgQDGR3MpRGKFQkch0GPEYliFAHTO6osrMQwZE",
            "alg": "ES256"
        }
    ]
}

⚠️ Make sure to do not use this key in production. It is only an example.

Run 🏃

make run

mvn spring-boot:run -pl webapp

⚠️ make run will run the database container if it is not running.

Test ✅

make test

mvn test

About

Template for a Java API, using Spring Boot, Spring Data JPA, Spring Security, and JWT.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published