Development

This page covers the development process of the Journal de bord REST API.

Configuration

spring:
  security:
    oauth2:
      resourceserver:
        jwt:
          issuer-uri: <authorization-server-host>
          jwk-set-uri: <authorization-server-public-keys-endpoint>
  datasource:
    url: jdbc:h2:mem:<name>
    driverClassName: org.h2.Driver
    username: <username>
    password: <password>
  jpa:
    database-platform: org.hibernate.dialect.H2Dialect
  h2:
    console:
      enabled: true

Security

The application can be tested using the Postman application.

In-memory database

The application uses a H2 in-memory database. You can access using the admin console at the <host>/h2-console endpoint.

Last updated