/Clinic_API

API rest with java and spring boot

Primary LanguageJava

Spring boot Logo

API Rest with Java and Spring Boot

This API is based on a system for internal use of a medical clinic

Prerequisites ⚒️

  • Mysql
  • JDK (version 17)

Technologies 💻

  • Spring Boot 3
  • Java 17
  • Lombok
  • MySQL / Flyway
  • JPA / Hibernate
  • Maven

How the API works

Database creation

    $ create database vollmed_api;

Configure the file "application.properties" with data from your database

    spring:
        datasource:
            driver-class-name: com.mysql.cj.jdbc.Driver
            url: jdbc:mysql://localhost:3306/vollmed_api
            username: username
            password: password

When running the application, the migrations will be executed in the database

Spring boot Logo

Tests

Recommendations:

  • Postman
  • insomnia