Spring Boot Assignment Java Full Stack
Spring Boot Assignment Java Full Stack
General Instructions:
1. Assignment-1:
2. Assignment-2:
Create a Spring Boot Application based on the below
requirement:
a. The application should support two restful URLs.
b. The first restful URL should display an HTML page
that displays the Bank Name as its heading and also
a table with around 10 branches of that bank in the
city of Bangalore.
c. The second restful URL should display an HTML
page that displays the Bank Name as its heading and
also a table with all services provided by the bank
d. Test the application by testing both the URLs to
verify that they return and display data as expected.
3. Assignment-3:
4. Assignment-4:
5. Assignment-5:
Create a Spring Boot Application as per the requirements
below:
a. The application should store in a ‘Map’ the
employee details like Employee ID’ , ‘Employee
Name’ , ‘Employee Email’ and ‘Location’. (Hint:
Map’s key can be ‘Employee ID’ and Value can be
the Employee Object)
b. The application should support all 4 operations of
REST like:
a. GET – using this the client should be able to
get details of all registered employees and also
be able to get employee details based on
Employee ID which can be passed as a Path
Parameter
b. POST – using this method the client should be
able to save an Employees details into the
Map
c. PUT – using this method the client should be
able to update/modify the Employees details
except for Employee ID
d. DELETE – using this method the client should
be able to delete an unwanted Employee
record
c. Test all the above functionalities using Chrome plug-
ins/apps like Advanced REST client (ARC) or
Postman