Skip to content

This GitHub repository provides a robust and scalable RESTful API built using Java Spring Boot and MySQL. It enables seamless integration to create, update, access, and delete user details from the database.

Notifications You must be signed in to change notification settings

pratikshakh01/UserDetails

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Use postman api to test the application as follows:

  1. Create:
    Use POST to update the database with the new user details. Pass your data as raw JSON data in body of the request.
    image
  2. Get User By Id:
    Use GET to recieve data from the database of the user whose id is passed in the url of the request as shown. All the user's details will be shown in the response in JSON format.
    image
  3. Get all user details: :
    Use GET to recieve data from the database of the all the users. The details will be shown in the response in JSON format.
    image
  4. Update a particular user's details:
    Use PUT method to update the particular user details by passing data as raw JSON data in body of the request.
    image
  5. Deleting a particular user:
    Use DELETE method to delete a particular user whose ID is passed with url in request.
    image
  6. Deleting all the users:
    Use DELETE method to delete all the users and their details present in the database.
    image

You can change the database connection details in application.yaml file.

About

This GitHub repository provides a robust and scalable RESTful API built using Java Spring Boot and MySQL. It enables seamless integration to create, update, access, and delete user details from the database.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages