Requirements IntelliJ IDEA Ultimate
Runs on Tomcat Server 9.0.58 Port: localhost:3030
Entry point URL: https://localhost:3030/people
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:https://localhost:5432/first_db
Username: postgres
Password: password
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.