Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

bobocode-projects/spring-framework-tutorial

Repository files navigation

Spring framework tutorial

The list of tutorials on Dependency Injection, Aspect-Oriented programming, and Spring MVC

Pre-conditions ❗

You're supposed to have at least good knowledge on Java SE

Related resources ℹ️

Overview

  • Spring in Action 📗
    • 1.1 Simplifying Java development. (Advantages of Spring)
    • 1.2 Containing your beans. (A bean lifecycle)

Bean configuration

ORM

  • Spring in Action 📗
    • 11.2.1 Configuring an entity manager factory. (How to configure JPA without persistence.xml?)
    • 11.2.2 Writing a JPA-based repository. (How to create DAO using @Repository?)
    • 10.1.1 Getting to know Spring’s data-access exception hierarchy. (Why Spring wraps SQL checked exceptions?)

Transaction management