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

bobocode-projects/spring-data-jdbc-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Data JDBC exercises

The list of exercises dedicated to training your Spring Data JDBC skills

No pain, No gain ❗

Skill is only developed by hours and hours and hours of beating on your craft

Working on real problems, you're focused on finding a solution. When learning new things, you're trying to understand how it works. It is important to have a different type of activities, which purpose is improving your skill.

An exercise is a predefined task that you continuously implement to improve a certain skill 💪

Spring Data JDBC helps you build simple Spring Data Repositories using just JDBC API under the hood. It does not provide any fancy features like Lazy Loading or Dirty Checking. It's a lightweight and straightforward alternative to Spring Data JPA and Hibernate ⚡. It gives you simple features like:

  • CRUD repository method
  • native SQL-based @Query annotation support

▶️ Start from Hello Spring Data JDBC exercise and learn the basics.