H2 Veritabanı ve JPA Entegrasyonu
Bellek içi bir H2 veritabanı kurun ve kalıcı veri saklama için Spring Data JPA'yı yapılandırın.
H2 Veritabanı ve JPA Entegrasyonu, CoddyKit'te ücretsiz bir Spring Boot 4 Microservices & REST APIs dersidir. Bu, 6 dersinin 1. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Spring Boot 4 Microservices & REST APIs öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Spring Boot 4 Microservices & REST APIs kursu toplamda 6 dersten oluşur.
Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.
Storing Data with Persistence
Welcome! In this lesson, we'll learn about data persistence. This is how applications save information so it's not lost when the app closes.
Think of it like saving a document on your computer. Without persistence, all your work would vanish every time you shut down.
Introducing JPA
JPA stands for Java Persistence API. It's a standard for managing relational data in Java applications.
JPA helps map Java objects to database tables, a process called Object-Relational Mapping (ORM). This lets you work with objects instead of writing complex SQL queries.
Simplifying with Spring Data JPA
While JPA is a standard, Spring Data JPA makes using it even easier! It's part of the Spring framework.
Spring Data JPA provides powerful abstractions, letting you create data repositories with minimal code. You often just declare an interface, and Spring handles the implementation!
H2: An In-Memory Database
For development, we'll use H2 Database. It's a lightweight, open-source relational database.
- In-Memory: It runs entirely in your application's memory, making it super fast for development.
- Easy Setup: No separate installation needed; just add a dependency.
- Console: It comes with a web console to view your data.
It's perfect for testing and quickly building prototypes.
Project Dependencies for H2 & JPA
To use H2 and Spring Data JPA in a Spring Boot project, we need to add specific dependencies to our pom.xml file.
These dependencies tell Maven (our build tool) which libraries to include.
<pre><code><dependencies>
<!-- Spring Data JPA -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- H2 Database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies></code></pre>Spring Boot's Smart Setup
One of Spring Boot's superpowers is auto-configuration. When it sees the H2 and Spring Data JPA dependencies, it automatically sets up a database connection and configures JPA for you.
This means less boilerplate code and faster development! It typically defaults to an in-memory H2 database.
Customizing H2 in `application.properties`
While Spring Boot auto-configures H2, we often want to enable its web console for easy viewing of our database. We do this in src/main/resources/application.properties.
Add these lines to your application.properties file:
<pre><code>spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=</code></pre>Accessing Your H2 Console
Once your Spring Boot application starts with the above configuration, you can access the H2 console through your web browser.
- Open your browser.
- Go to
http://localhost:8080/h2-console(if your app runs on port 8080). - Use the JDBC URL
jdbc:h2:mem:testdband the usernamesa(no password) to connect.
You'll see a simple interface to browse tables and run SQL queries.
Defining a Simple Data Model
Now, let's create a simple Java class that JPA will map to a database table. This is called an Entity.
We use @Entity to mark it as a JPA entity and @Id to denote its primary key.
<pre><code>package com.coddykit.lesson;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
@Entity
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
private double price;
// Getters and setters (omitted for brevity)
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public double getPrice() { return price; }
public void setPrice(double price) { this.price = price; }
}</code></pre>Data Access with `JpaRepository`
To interact with our Product entity, we define a repository interface. Spring Data JPA will automatically provide the implementation.
By extending JpaRepository<Product, Long>, we get basic CRUD (Create, Read, Update, Delete) operations for free!
<pre><code>package com.coddykit.lesson;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface ProductRepository extends JpaRepository<Product, Long> {
// Spring Data JPA automatically provides methods
// like save(), findById(), findAll(), deleteById()
}</code></pre>Quick Check: H2 & JPA Setup
Which of the following dependencies are essential for setting up an in-memory H2 database with Spring Data JPA in a Spring Boot project?
H2 & JPA: Ready to Persist!
Great job! In this lesson, you learned how to:
- Understand data persistence and JPA.
- Integrate H2 Database and Spring Data JPA into your project.
- Configure H2 and access its web console.
- Define a basic JPA Entity and a
JpaRepositoryinterface.
You've laid the groundwork for building data-driven Spring Boot applications!
Sıkça Sorulan Sorular
“H2 Veritabanı ve JPA Entegrasyonu” dersi ücretsiz mi?
Evet — “H2 Veritabanı ve JPA Entegrasyonu” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Spring Boot 4 Microservices & REST APIs kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Spring Boot 4 Microservices & REST APIs kursu toplamda 6 dersten oluşur.
“H2 Veritabanı ve JPA Entegrasyonu” dersinde ne öğreneceğim?
Bellek içi bir H2 veritabanı kurun ve kalıcı veri saklama için Spring Data JPA'yı yapılandırın. Spring Boot 4 Microservices & REST APIs ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.
Spring Boot 4 Microservices & REST APIs öğrenmeye başlamak için deneyim gerekli mi?
Önceden deneyim gerekmez. CoddyKit'te Spring Boot 4 Microservices & REST APIs, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 6 dersinin 1. dersidir.
“H2 Veritabanı ve JPA Entegrasyonu” dersi ne kadar sürer?
Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.
Bu Spring Boot 4 Microservices & REST APIs dersinde kod yazıp çalıştırabilir miyim?
Evet. Her Spring Boot 4 Microservices & REST APIs dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.
Bu kursun tüm dersleri
- H2 Veritabanı ve JPA Entegrasyonu
- Spring Data JPA'ya Giriş
- Varlıklar ve Depolar Oluşturma
- Varlıkları ve Depoları Tanımlama
- REST ile CRUD İşlemleri
- CRUD İşlemlerini Gerçekleştirme