Hibernate 의 입문 편 을 되돌아보다
기본 개념
1. 기본 역할: hibenate 프레임 워 크 는 주로 데이터 베 이 스 를 조작 하 는 데 사용 되 며 JDBC 에 대한 패키지 입 니 다.응용 에서 데이터 액세스 층 을 실현 합 니 다.
2. 장점:
3. 기본 원리: ORM, Object 관계 Mapping, 대상 관계 맵.자바 대상 과 데이터 시트 기록 간 의 매 핑 을 완성 할 수 있 으 며, 업무 층 에서 대상 을 조작 하면 데이터 베 이 스 를 조작 할 수 있 습 니 다.
기본 사용
1. 주요 절차
<hibernate-configuration>
<session-factory>
<property name="show_sql">trueproperty>
<property name="format_sql">trueproperty>
<property name="current_session_context_class">threadproperty>
<property name="dialect">org.hibernate.dialect.MySQLDialectproperty>
<property name="connection.driver_class">com.mysql.jdbc.Driverproperty>
<property name="connection.url">jdbc:mysql://localhost:3306/earl_testproperty>
<property name="connection.username">rootproperty>
<property name="connection.password">property>
<mapping resource="config/mapping/Pet.hbm.xml"/>
session-factory>
hibernate-configuration>
import java.sql.Date;
public class Pet {
private int id;
private String name;
private String owner;
private String species;
private int sex;
private Date birth;
private Date death;
private boolean is_dead;
//TODO getter setter, toString
......
}
<hibernate-mapping>
<class name="com.earl.entity.Pet" table="pet" >
<id name="id" column="id" type="integer">
<generator class="identity">generator>
id>
<property name="name" column="name" type="string"/>
<property name="owner" column="owner" type="string"/>
<property name="species" column="species" type="string"/>
<property name="sex" column="sex" type="int"/>
<property name="birth" column="birth" type="date"/>
<property name="death" column="death" type="date"/>
<property name="is_dead" column="is_dead" type="yes_no"/>
class>
hibernate-mapping>
2. 기본 동작 은 데이터베이스 에 대한 CURD 동작 입 니 다.먼저 테스트 표를 만 듭 니 다. 이 표 도 제 가 연습 할 때 다른 곳 에서 찾 아 온 것 입 니 다. 다음은 표 문구 와 데 이 터 를 만 드 는 것 입 니 다.
CREATE TABLE IF NOT EXISTS `pet` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
`owner` varchar(20) DEFAULT NULL,
`species` varchar(20) DEFAULT NULL,
`sex` int(11) DEFAULT NULL,
`birth` date DEFAULT NULL,
`death` date DEFAULT NULL,
`is_dead` char(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
INSERT INTO `pet` (`id`, `name`, `owner`, `species`, `sex`, `birth`, `death`, `is_dead`) VALUES
(1, 'nokia', 'Harold', 'cat', 1, '1993-02-04', NULL, 'N'),
(2, 'Claws', 'Gwen', 'cat', 0, '1994-03-17', NULL, 'n'),
(3, 'Buffy', 'Harold', 'dog', 1, '1989-05-13', NULL, 'n'),
(4, 'Fang', 'Benny', 'dog', 1, '1990-08-27', NULL, 'n'),
(5, 'Bowser', 'Diane', 'dog', 0, '1979-08-31', '1995-07-29', 'y'),
(6, 'Chirpy', 'Gwen', 'bird', 1, '1998-09-11', NULL, 'n'),
(7, 'Whistler', 'Gwen', 'bird', 1, '1997-12-09', NULL, 'n'),
(8, 'Slim', 'Benny', 'snake', 0, '1996-04-29', NULL, 'n'),
(9, 'Tom', 'Jerry', 'cat', 1, '2016-01-11', NULL, 'N');
잔말 말고 구체 적 인 사용 을 살 펴 보 자.
@Test
public void testInsert(){
java.util.Date birthDate=new java.util.Date();
// ,
Pet pet=new Pet();
pet.setName("Tom");
pet.setOwner("Jerry");
pet.setSpecies("cat");
pet.setSex(1);
pet.setBirth(new Date(birthDate.getTime()));
pet.setIs_dead(true);
// configuration session , session
Configuration configuration=new Configuration();
configuration.configure();
SessionFactory factory=configuration.buildSessionFactory();
Session session=factory.openSession();
// , , , ,
Transaction transaction=session.beginTransaction();
// hibernate API
session.save(pet);
transaction.commit();
session.close();
}
@Test
public void testDelete(){
Pet pet=new Pet();
pet.setId(11);
// SessionUtil Session
Session session=SessionUtil.getSession();
Transaction transaction=session.beginTransaction();
session.delete(pet);
transaction.commit();
SessionUtil.closeSession(session);
}
@Test
public void testUpdate(){
Session session=SessionUtil.getSession();
Transaction transaction=session.beginTransaction();
// , ,
//load ,
Pet pet=session.load(Pet.class, 9);
pet.setSpecies("cat");
pet.setName("Tom");
pet.setOwner("Jerry");
session.update(pet);
transaction.commit();
SessionUtil.closeSession(session);
}
select from Pet
SQL: select * from pet
그들의 문법 은 대체적으로 같 습 니 다. 다른 것 은 HQL 이 대상 Pet, SQL 이 대상 인 데이터 테이블 pet 입 니 다.다음 사례 에 대해 서 는 여기 서 간단히 말씀 드 리 고 HQL 에 대해 더 자세히 소개 하 겠 습 니 다.@Test
public void testFindAll(){
Session session=SessionUtil.getSession();
String hql="from Pet";
Query query=session.createQuery(hql);
// , pet
List pets=query.list();
for(Pet pet:pets){
System.out.println(pet);
}
SessionUtil.closeSession(session);
}
3. 총화
이상 은 hibenate 에 대한 기본 적 인 사용 이 었 습 니 다.그 다음 에 hibenate 의 주요 프로필 인 hibenate. cfg. xml, 대상 맵 파일 hbm. xml, 그리고 HQL 에 대해 더 자세 한 설명 을 할 것 입 니 다.OK,bye,See you later!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Pytest 테스트 프레임워크 기본 사용 방법 상세 정보pytest 소개 2. 매개 변수화를 지원하여 테스트할 테스트 용례를 세밀하게 제어할 수 있다. 3. 간단한 단원 테스트와 복잡한 기능 테스트를 지원할 수 있고selenium/appnium 등 자동화 테스트, 인터페...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.