Skip to content

TGertz/springCRUDapp1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

Project Name: springCRUDapp1

Requirements IntelliJ IDEA Ultimate

Runs on Tomcat Server 9.0.58 Port: localhost:3030

Entry point URL: http://localhost:3030/people

Using Relational PostgreDB

DB name: first_db -> table: person -> columns: id(integer), name(varchar), age(integer), email(varchar)

Source Driver: org.postgresql.Driver

Data Source url: jdbc:postgresql://localhost:5432/first_db

Username: postgres

Password: password

About the App:

SpringMVC application represents parameters from stored in DB persons table and allows to perform CRUD operations.

HTTP REST pattern.

DAO(Data Access Object) pattern.

pure JDBC API and Jdbc Template options.