Odak modu

Java Spring

Hibernate Kurulumu ve Config İşlemleri

Bu bölümde, Hibernate'in nasıl kurulduğunu adım adım inceleyeceğiz. Hibernate'i projemize eklemek için Maven projesi kullanacağız. İlk olarak, Hibernate'i projemize eklemek için Maven dependency'lerini tanımlamamız gerekiyor.

<dependency>
  <groupId>org.hibernate</groupId>
  <artifactId>hibernate-core</artifactId>
  <version>6.3.0.Final</version>
</dependency>

<dependency>
  <groupId>org.postgresql</groupId>
  <artifactId>postgresql</artifactId>
  <version>42.6.0</version>
</dependency>

Bu dependency'leri ekleyerek, Hibernate ve PostgreSQL sürücüsünü projemize dahil ediyoruz. Ardından, bu bağımlılıkları projemize yüklemek için Maven'ın reload özelliğini kullanabiliriz.

Şimdi, Hibernate'in temel yapısını kullanabilmemiz için bir configuration dosyasına ihtiyacımız var. Bu dosyayı "hibernate.cfg.xml" adında bir dosya olarak resources klasörü içerisine ekleyeceğiz. Bu dosya, Hibernate'in çalışma şeklini ve veritabanı bağlantı ayarlarını içerir.

<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>

  <session-factory>
    <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
    <property name="hibernate.connection.url">jdbc:postgresql://localhost:5433/test</property>
    <property name="hibernate.connection.username">postgres</property>
    <property name="hibernate.connection.password">1234</property>
    <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
    <property name="hibernate.hbm2ddl.auto">create-drop</property>
    <property name="hibernate.show_sql">true</property>
    <property name="hibernate.format_sql">true</property>
  </session-factory>

</hibernate-configuration>

Bu konfigürasyon dosyasında, PostgreSQL bağlantı bilgilerimizi, Hibernate'in SQL sorgularını gösterip göstermeyeceğini, SQL formatlamasını ve tabloların oluşturulma şeklini belirliyoruz.

Şimdi, Hibernate Session Factory'yi oluşturmak ve bir Session başlatmak için Java koduna geçebiliriz.

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class App {

  public static void main(String[] args) {

    // Hibernate Configuration
    Configuration configuration = new Configuration();
    configuration.configure("hibernate.cfg.xml");

    // Build Hibernate Session Factory
    SessionFactory sessionFactory = configuration.buildSessionFactory();

    // Open a session
    try (Session session = sessionFactory.openSession()) {
      // Hibernate operations go here
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}

Burada, Hibernate Configuration'ı oluşturuyoruz ve daha sonra bu konfigürasyonu kullanarak bir Session Factory inşa ediyoruz. Son olarak, bir Hibernate Session açarak veritabanı işlemlerimizi gerçekleştirebiliriz.

Bu adımlarla, Hibernate'i projemize ekleyip temel bir yapıyı oluşturduk. Daha sonraki bölümlerde, Hibernate ile veritabanı işlemlerini nasıl gerçekleştirebileceğimizi detaylı bir şekilde inceleyeceğiz. 

left-disk

Yazılım Kariyerinde İlerlemeni Hızlandıracak Programlar

Patika+ programlarımız ile 4-8 aylık yoğun yazılım kamplarına katıl, temel bilgilerden başlayarak kapsamlı bilgiler edin, yazılım kariyerine başla!

right-cube

Yorumlar

Yorum yapabilmek için derse kayıt olmalısın!