Skip to content

alewerner/udacity_JDND_3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reviews API

Supports operations for writing reviews and listing reviews for a product but with no sorting or filtering.

Prerequisites

MySQL needs to be installed and configured. Instructions provided separately.

  • Connects to your local MySQL instance and creates the reviews database with the following command:
mysql> create database reviews;

Running the Application

  • Replace the user authentication for connect with your local database configuration. Password and username are located on application.properties.
spring.datasource.username=<db username goes here>
spring.datasource.password=<db password goes here>

How to use this Application:

All the methos are listed on Swagger. Swagger UI: http://localhost:8080/swagger-ui.html

Features:

  • MySQL Datasource in application.properties.
  • Flyway scripts in src/main/resources/db/migration.
  • JPA Entities and relationships.
  • Spring Data JPA Repositories.
  • Tests for JPA Repositories.

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages