Hibernate 입문 실례

32752 단어 Hibernate
1. 환경 설정
1.1 hiberante 환경 설정
hibenate 는 대상 을 대상 으로 하 는 데이터 저장 을 실현 할 수 있 습 니 다.hibenate 홈 페이지: http://hibernate.org/ 홈 페이지 에서 hibenate ORM 을 선택 하면 최신 hibenate 를 다운로드 할 수 있 고 세트 로 된 document 튜 토리 얼 도 있 습 니 다.  http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html_single/  。다운로드 한 hibenate 폴 더 에는 document 문서 (hibenate \ documentation \ manual \ en - US \ html single) 가 있 습 니 다.hibenate 4.3.1 폴 더 의 문서 와 사이트 에서 제공 하 는 답 이 다 르 고 홈 페이지 의 문서 가 더 상세 하 며 toturial 의 소스 코드 도 첨부 되 어 있 는 것 을 발견 했다.
eclipse - > windows - > preferences - > java - > build path - > user libraries 를 열 고 new 를 누 르 면 library 를 새로 만 들 고 hibenate 라 고 이름 을 지 을 수 있 습 니 다.Add JARs 를 누 르 면 hibenate - > lib - > required 의 모든 jar 파일 을 선택 하고 데이터베이스 의 connector 파일 도 추가 해 야 합 니 다.my sql 을 사용 하기 때문에 제 가 사용 하 는 my sql - connector - 자바 의 jar 파일 입 니 다.이 jar 파일 은 어디서 얻 을 수 있 습 니까?my sql 서버 를 설치 하여 만 든 폴 더 에는 jar 파일 이 없습니다.MySQL 의 JDBC jar 패 키 지 를 따로 다운로드 해 야 합 니 다.mysql 홈 페이지 에서 다운로드 가능:http://dev.mysql.com/downloads/connector/j/ 다운로드 후 msi 파일 을 받 고 더 블 클릭 및 설치 가 가능 합 니 다.설치 후 기본적으로 폴 더 C: \ Program Files (x86) \ MySQL \ \ MySQL Connector J 가 생 성 됩 니 다. 여기에 mysql - connector - java - x. x - bin. jar 패키지 가 있 습 니 다.
1.2 mysql 데이터베이스 설정
mysql 서버 를 설치 하고 루트 의 암 호 를 루트 로 설정 합 니 다.my sql 서버 를 시작 하고 데이터베이스 hibenate 를 새로 만 들 고 표 student 을 새로 만 듭 니 다.
1 # mysql -uroot -proot

2 > create database hiberante;

3 > use hibernate;

4 > create table student(id int primary key, name varchar(20), age int);

5 > quit;

2. 인 스 턴 스 코드
하 이 버 네 이 트 헬 로 월 드 라 고 가정 한 자바 프로젝트 를 새로 만 듭 니 다.src 에서 새로운 패키지 입 니 다. com. sun. hibenate. model 이 라 고 이름 을 지 을 수 있 습 니 다.
2.1 클래스 코드
com. sun. hibenate. model 가방 에 간단 한 종 류 를 만 듭 니 다.내용 은 다음 과 같다.
 1 package com.sun.hibernate.model;

 2  

 3 public class Student {

 4     private int id;

 5     private String name;

 6     private int age;

 7  

 8     public int getId() {

 9         return id;

10     }

11     public void setId(int id) {

12         this.id = id;

13     }

14     public String getName() {

15         return name;

16     }

17     public void setName(String name) {

18         this.name = name;

19     }

20     public int getAge() {

21         return age;

22     }

23     public void setAge(int age) {

24         this.age = age;

25     }

26  

27 }

2.2 hibenate 프로필 설정
hibernate \ \ projec \ etc 의 hiberante. cfg. xml 는 hibernate 설정 문서 로 사용 하거나 hibernate \ \ documentation \ manual \ en - US \ html 를 사용 할 수 있 습 니 다.single \ \ index. html 를 템 플 릿 으로 합 니 다.src 폴 더 아래 에 새 파일 을 만 들 고 hibenate. cfg. xml 라 고 명명 합 니 다.(다른 파일 이름 으로 명명 할 수 없 음) 가장 기본 적 인 프로필 은 다음 과 같 습 니 다.
 1 <?xml version='1.0' encoding='utf-8'?>

 2 <!DOCTYPE hibernate-configuration PUBLIC

 3         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

 4         "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

 5      

 6 <hibernate-configuration>

 7     <session-factory>

 8      

 9     <!-- Database connection settings -->

10     <property name="connection.driver_class">com.mysql.jdbc.Driver</property>

11     <property name="connection.url">jdbc:mysql://localhost/hibernate</property>

12     <property name="connection.username">root</property>

13     <property name="connection.password">root</property>

14          

15     <!-- JDBC connection pool (use the built-in) -->

16     <!-- <property name="connection.pool_size">1</property> -->

17          

18     <!-- SQL dialect -->

19     <property name="dialect">org.hibernate.dialect.MySQLDialect</property>

20          

21     <!-- Echo all executed SQL to stdout -->

22     <property name="show_sql">true</property>

23          

24     <!-- Enable Hibernate's automatic session context management -->

25     <!--<property name="current_session_context_class">thread</property>-->

26          

27     <!-- Drop and re-create the database schema on startup -->

28     <!-- <property name="hbm2ddl.auto">create</property> -->

29          

30     <!-- Disable the second-level cache -->

31     <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

32      

33     <mapping resource="com/sun/hibernate/model/Student.hbm.xml"/>

34          

35     </session-factory>

36 </hibernate-configuration>

mapping resource 의 값 은 패키지 이름과 클래스 이름 에 따라 수정 할 수 있 습 니 다.클래스 이름 이 Student 이면 이 클래스 설정 파일 은 Student. hbm. xml 입 니 다.
2.3 클래스 mapping 파일
Student. hbm. xml 라 는 파일 을 새로 만 들 고 com. sun. hibenate. model 패키지 에 넣 습 니 다.내용 은 다음 과 같다.

 1 <?xml version="1.0" encoding="UTF-8"?>

 2 <!DOCTYPE hibernate-mapping PUBLIC

 3     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"

 4     "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">

 5  

 6 <hibernate-mapping package="com.sun.hibernate.model">

 7     <class name="Student">

 8         <id name="id"></id>

 9         <property name="name"></property>

10         <property name="age"></property>

11     </class>

12 </hibernate-mapping>

Student.hbm.xml
파일 시작 부분의 설정 을 주의 하 십시오. 이 곳 은 hibenate. cfg. xml 과 다 릅 니 다.hiberante. cfg. xml 와 같이 설정 되 어 있 으 면 실행 중 오류 가 발생 합 니 다. "문서 루트 요소" hibernate - mapping "은 DOCTYPE 루트" hibernate - configuration "과 일치 해 야 합 니 다. ”
2.4 Student Test 테스트 클래스
Student. java 의 Junit 테스트 클래스 Student Test. java 를 추가 하여 com. sun. hibernate. model 패키지 에 다음 과 같은 코드 를 넣 습 니 다.

 1 package com.sun.hibernate.model;

 2  

 3 import org.hibernate.Session;

 4 import org.hibernate.SessionFactory;

 5 import org.hibernate.cfg.Configuration;

 6  

 7 public class StudentTest {

 8  

 9     public static void main(String[] args){

10         Student s = new Student();

11         s.setId(1);

12         s.setName("s1");

13         s.setAge(1);

14          

15         Configuration cfg = new Configuration();

16         SessionFactory sf = cfg.configure().buildSessionFactory();

17          

18         Session session = sf.openSession();

19         session.beginTransaction();

20         session.save(s);

21         session.getTransaction().commit();

22         session.close();

23         sf.close();    

24     }

25 }

StudentTest.class
2.5. 실행 결과
Student Test. java 클래스 를 실행 합 니 다. 입력 에 성 공 했 음 을 알 립 니 다. 데이터 베 이 스 를 찾 아 보면 student 데이터 시트 에 저 장 된 데 이 터 를 발견 할 수 있 습 니 다. my eclipse 는 buildSession Factory () 함수 가 deprecated 되 었 음 을 알 립 니 다. 실제 프로그램 은 성공 적 으로 실 행 될 수 있 습 니 다.
3. annotation 사용
annotation 을 사용 하 는 것 이 편리 하기 때문에 annotation 을 사용 하면 XXX. hbm. xml 파일 을 쓰 지 않 아 도 됩 니 다.
3.1 새 클래스
@ 을 두 드 린 후 알림 이 나타 나 야 합 니 다. 나타 나 지 않 으 면 Window - > Preferences - > Java - > Editor - > Content Assist 에 Auto activation triggers forJava 에 @ 을 추가 하면 됩 니 다. Teacher. java 류 는 Student 류 와 기본적으로 같 으 며 @ 로 시작 하 는 내용 은 annotation 입 니 다.

 1 package com.sun.hibernate.model;

 2  

 3 import javax.persistence.Entity;

 4 import javax.persistence.Id;

 5  

 6 @Entity

 7 public class Teacher {

 8      

 9     @Id

10     public int getId() {

11         return id;

12     }

13     public void setId(int id) {

14         this.id = id;

15     }

16     public String getName() {

17         return name;

18     }

19     public void setName(String name) {

20         this.name = name;

21     }

22     public int getAge() {

23         return age;

24     }

25     public void setAge(int age) {

26         this.age = age;

27     }

28     public int getTitle() {

29         return title;

30     }

31     public void setTitle(String title) {

32         this.title = title;

33     }

34      

35     private int id;

36     private String name;

37     private int age;

38     private String title;

39      

40 }

Teacher.class
3.2 hibernate. cfg. xml 업데이트
기 존 hibenate. cfg. xml 파일 의 mapping 아래 에 굵 은 내용 을 추가 합 니 다.
1 <mapping resource="com/sun/hibernate/model/Student.hbm.xml"/>

2 <mapping class="com.sun.hiberante.model.Teacher"/>

4.3 새 TeacherTest. java 클래스

 1 import org.hibernate.SessionFactory;

 2 import org.hibernate.cfg.AnnotationConfiguration;

 3 import org.hibernate.cfg.Configuration;

 4  

 5 public class TeacherTest {

 6  

 7     public static void main(String[] args){

 8         Teacher t = new Teacher();

 9         t.setId(1);

10         t.setName("t1");

11         t.setAge(1);

12         t.setTitle("middel");

13          

14         Configuration cfg = new AnnotationConfiguration();

15         SessionFactory sf = cfg.configure().buildSessionFactory();

16         Session session = sf.openSession();

17         session.beginTransaction();

18         session.save(t);

19         session.getTransaction().commit();

20         session.close();

21         sf.close();

22     }

23  

24 }

TeacherTest.class
3.3 운행
데이터베이스 에 새 teacher 데이터 시트 만 들 기:
1 # mysql -uroot -proot

2 > use hibernate;

3 > create table teacher(id int primary key, name varchar(20), age int, title varchar(20));

4 > quit;

TeacherTest. java 클래스 를 실행 합 니 다. 입력 이 성 공 했 음 을 알 리 지만 데이터베이스 에 가서 조회 하면 teacher 데이터 시트 에 저 장 된 데 이 터 를 발견 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기