0% found this document useful (0 votes)
98 views

Class 2

This document provides an overview of topics to be covered in a Spring and Spring Boot class over 3 months. It will cover Spring core concepts, Spring MVC, Spring Security, Spring Boot, microservices, REST, and more. Assignments include explaining reflection and interception mechanisms. Students will build a complete project using Spring frameworks. Recordings of daily sessions will be shared by email and class notes are available online with a provided password.

Uploaded by

Ashok Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
98 views

Class 2

This document provides an overview of topics to be covered in a Spring and Spring Boot class over 3 months. It will cover Spring core concepts, Spring MVC, Spring Security, Spring Boot, microservices, REST, and more. Assignments include explaining reflection and interception mechanisms. Students will build a complete project using Spring frameworks. Recordings of daily sessions will be shared by email and class notes are available online with a provided password.

Uploaded by

Ashok Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

Class -2

---------

Day-02
Spring & Spring Boot

Pre-requisite to learn this course:


Core java
adv java
sql

Different types of application:


1. standalone application : corejava / j2se
: .jar
2. web application : servlets jsp || structs,
JSF : .war
3. Enterprize application : EJB || spring
: .ear
4. distributed Application : web services
: .aar

"Spring is a framework to design enterprize application"

.jar : java archive file


.war : web archive file
.ear : enterprise archive file
.aar : Application archive file

These days We need to design the application which fallows the below fatures
Efficiency
Scalability
security
flexibity
To design the application which fallows the above features use spring framework.

Framework is semi-implemeted component to build the application.

There are two types of frameworks,


1. ORM(object relational mapping) frameworks : used to build persistance
logics.
hibernate , toplink.....
2. web frameworks : to design the web appliation(web layer).
structs

"Spring is application development framework to build end-end application"


Spring is a modular framework contians multiple
modules(core,AOP,txn,JPA,MVC.....) depends on requiremnet use speceif module.
Spring is a enterprize java framework to build enterprise applications.

Class tile : 6PM to 7PM


Duration : 3-months

Topics:
Spring core
Spring AOP
Spring JDBC
Spring tnx
Spring JPA
Spring messaging
Spring MVC/web

Spring Cloud
Spring Social
Spring security
Spring boot

Spring with maven ---- xml


Spring with grable ---- json

Spring with REST


Spring Micro services

Spring with xml configuration


Spring with java based configuration
Spring with annotations configurations

Spring case study.


postman

We will build a project using above all topics.

"Felling important...."

Every day you get the recorded session to your email....

i will share the complete pdf docs


class-notes :
class Notes : https://www.protectedtext.com/spring6pm
password : java

Spring & spring Boot


Spring Security & micro services
Web services(SOAP-xml REST-json) yaml

There are three types of universal data representation


1. xml : extensible markup language
2. json : javascript object notation
3. yaml : yet another markup language

There are two types of servers.


1. web servers
used to execute the Web Application.
ex: jetty, IES, tomcat4.0

2. Application server
Used to used to execute both web Applications & enterprize apps.
ex: tomcat, glassfish , weblogic....

Assignment-1: What is reflection machanisum.


The process of gathering complete information about the class.
The normal java class contains : variables, methods, constructors , blocks
The reflection related classes are present in "java.lang.reflect"

Assignment-2: What is interoception machanisum.


The process of gathering complete information about the java bean class.
The java bean class contains : private properties, public setter & getter
methods.

You might also like