You are on page 1of 16

SAL EDUCATION

SAL ENGINEERING AND TECHNICAL INSTITUTE


Opp. Science city, Sola-Bhadaj Road, Ahmedabad, Gujarat 380060 Ph:
- 079 67129000 Website: www.sal.edu.in

Student’s Weekly Report of Internship

Student Name: Sureja Krushnakumar Ashokbhai


Enrollment Number: 211260131513
Name Of Organization: Datacrops

External Guide Name: Chetan Parmar


External Guide Contact details: Email: Chetan.parmar@datacrops.com
Mobile No. : 9173771158

Internal Faculty Guide Name: Ravi Patel

Work done in last Week with description (Attach supporting Documents Like
Diagram, Data Dictionary, Screen Shot of each Work):
1. Basics of Java Servlets and Java Server Pages.
2. Spring boot overview and simple crud operation using spring boot.

Plans for next week:

Total Working Hrs: ____40__________ Signature of Student:


The above entries are correct and the grading of work done by Trainee is
Excellent Very Good Good Fair Below Average Poor

Signature of External Guide with Company Seal: Signature of Internal Guide

Date: Date:
login page using Java Server Pages and servlet for multiple Users without database:
login page using Java Server Pages and servlet for multiple Users with database:

DATA BASE:
Spring boot overview and simple crud operation using spring boot:
CRUD stands for Create, Read/Retrieve, Update, and Delete and these are the four basic operations
that we perform on persistence storage. CRUD is data-oriented and the standardized use of HTTP
methods or there is a term for this called HTTP action verbs. HTTP has a few action verbs or
methods that work as CRUD operations and do note they are vital from a developmental point
perspective in programming that also helps us relate better web development and also aids us while
dealing with databases. In this article, we will be discussing the CRUD operations in Spring Boot,
before that let us understand what are standard CRUD Operations:

 POST: Creates a new resource

 GET: Reads/Retrieve a resource

 PUT: Updates an existing resource

 DELETE: Deletes a resource


 CREATE Operation: Performs the INSERT statement to create a new record.

 READ Operation: Reads table records based on the input parameter.

 UPDATE Operation: Executes an update statement on the table. It is based on the input
parameter.

 DELETE Operation: Deletes a specified row in the table. It is also based on the input
parameter.

So, in this article, we are going to perform some basic CRUD Operations by creating a Spring Boot
Application and using the H2 Database. So, here is a brief explanation of What’s Spring Boot and
What’s H2 Database.

Spring Boot:
Spring boot is built on the top of the spring and contains all the features of spring. And is becoming a
favourite of developers these days because it’s a rapid production-ready environment that enables
the developers to directly focus on the logic instead of struggling with the configuration and setup.
Spring Boot is a microservice-based framework and making a production-ready application in it takes
very little time.

You might also like