Skip to content

A simple Spring Application with CRUD operation for Learning

Notifications You must be signed in to change notification settings

Sivakumar3695/SpringNameListJdbcApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpringNameListJdbcApp

A simple Spring Application with CRUD operation for Learning

Before starting the application:

  1. Create a simple Database with the name TestDB.
  2. Create a table in mysql as below: Create Table NameList (ID int auto_increment not null, Name varchar(50) not null, SurName varchar(50), Primary Key (ID));

Application is meant just for learning purpose.

We can do basic CRUD operation as listed below:

  1. Create -> To as new Name and Surname
  2. Read -> To read all the NameList, get Name and Surname for a particular name, get Name for given ID
  3. Update -> To update the name and/or surname for the given ID.
  4. Delete -> delete the Name entry from the list.

About

A simple Spring Application with CRUD operation for Learning

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages