Below is the Agenda for Spring Core and Spring JDBC (Java Database Connectivity)
Spring Core
Spring Core Agenda and Pre-requisite
Introduction to Spring Framework and its module
What is the need of Spring Framework when we already have Servlets
What is Dependency Injection and IoC Container in Spring
What is Maven and why to use it ? What problem it solves ?
Creating Spring Core Project and adding necessary dependency
Setter Dependency Injection , Injecting Primitive Datatype using Setter Injection
Property Dependency Injection , Injecting Primitive Datatype using P – Schema
Setter Dependency Injection , Injecting Collection Datatype using Setter Injection
Setter Dependency Injection , Injecting Reference Datatype using Setter Injection
Ambiguity Problem with Setter Injection in Spring | Spring Core Tutorial
Spring bean lifecycle methods init() and destroy() | Spring Core Tutorial
Implementing Spring bean lifecycle method using XML | Spring Core Tutorial
Implementing Spring bean lifecycle method using Interface | Spring Core Tutorial
Implementing Spring bean lifecycle method using Annotation
What is Autowiring in Spring Framework – Theory
Autowiring using xml byname, bytype and byconstructor
Autowiring using annotations @Autowired
@Qualifier Annotation with @Autowired | What problem @Qualifier Annotation Solves
Stereotype Annotation @Component and @Value , @ComponentScan and @Configuration
How to configure Spring bean scope
Removing complete XML for spring configuration
Spring JDBC
Introduction to Spring JDBC | What are its advantages over traditional JDBC
How to create Spring JDBC Template object and what methods it provides
Configuring maven project for spring jdbc
Database Setup and How to configure JdbcTemplate for Spring JDBC
Inserting data to database using Spring JDBC
Update data to database using Spring JDBC
Delete data to database using Spring JDBC
Row Mapper Concept | Fetching data using Spring JDBC
Selecting Single Object using Spring JDBC
Selecting Multiple Objects using Spring JDBC
How to do Spring JDBC Configuration without XML
Autowiring with Spring JDBC | Spring JDBC Tutorial
Spring ORM
Spring ORM Introduction and why it needed
Creating maven project and adding dependencies
How to do spring orm configuration and hibernate template configuration
Crud operations in spring orm