Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 982 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 982 Bytes

Control ASP

Control ASP is demonstrating how to implement simple CRUD operations with the entities: Agente and Centro.

What's inside

This project is based on the Spring Boot project and uses these packages :

  • Maven
  • Spring Core
  • JPA
  • Spring Data (Hibernate & MySQL & PostgreSQL)
  • Spring MVC (Tomcat)
  • Thymleaf
  • JasperReport (PDF Reports)

Installation

The project is created with Maven, so you just need to import it to your IDE and build the project to resolve the dependencies

Database configuration

Create a PostgreSQL or MySQL database with the name control_aspand add the credentials to /resources/application.properties.
The default ones are :

spring.datasource.url=jdbc:postgresql://localhost:5432/control_asp
spring.datasource.username=youruser
spring.datasource.password=yourpass

Usage

Run the project and head out to http://localhost:8080