검색결과 리스트
Java/Hibernate / JPA에 해당되는 글 23건
- 2015.07.26 [Hibernate] Hibernate EHCache Second Level Caching Example Tutorial
 - 2015.07.25 [Spring Data JPA] 스프링 데이터 JPA 레퍼런스 번역
 - 2014.08.08 [Hibernate] Configuration-Logging
 - 2014.06.23 [JPA] @TableGenerator
 - 2014.06.11 [Hibernate] hibernate-ehcache
 - 2014.05.27 [Hibernate] Hibernate Performance Optimization
 - 2014.05.25 [Hibernate] Hibernate Tutorial Site
 - 2014.05.22 [Hibernate] Hibernate Query Language
 - 2014.04.22 [Hibernate] StandardBasicType (4.3.5.Final)
 - 2014.04.08 [Hiberante] Hibernate Documention (4.3.5.Final)
 - 2014.02.25 [Hibernate] Hibernate - Performance Tuning
 - 2014.02.22 [Hibernate] Ehcache, @Cache
 - 2013.12.28 [Hibernate] Hibernate 4.3.0 Final Documentation
 - 2013.12.17 [Hibernate] Hibernate.4.2.8.Final Documentation
 - 2013.12.13 [Hibernate] Hibernate Annotations
 - 2013.10.25 [Hibernate] Hibernate 설명
 - 2013.10.16 [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스)
 - 2013.10.11 [Hibernate] Hibernate Manual
 - 2013.08.20 [Hibernate] Import sql
 - 2013.08.15 [Hibernate] Hibernate3 일대다 관계의 객체 저장
 - 2013.08.13 [Hibernate] Hibernate Documents
 - 2013.07.18 [Hibernate] 예제
 - 2013.07.18 [Hibernate] Configuration
 
글
[Hibernate] Hibernate EHCache Second Level Caching Example Tutorial
설정
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Spring Data JPA] 스프링 데이터 JPA 레퍼런스 번역 (0) | 2015.07.25 | 
|---|---|
| [Hibernate] Configuration-Logging (0) | 2014.08.08 | 
| [JPA] @TableGenerator (0) | 2014.06.23 | 
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate EHCache Second Level Caching Example Tutorial (0) | 2015.07.26 | 
|---|---|
| [Hibernate] Configuration-Logging (0) | 2014.08.08 | 
| [JPA] @TableGenerator (0) | 2014.06.23 | 
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
트랙백
댓글
글
링크: http://docs.jboss.org/hibernate/core/4.3/manual/en-US/html/ch03.html#configuration-logging
When developing applications with Hibernate, you should almost always work with debug enabled for the category org.hibernate.SQL, or, alternatively, the property hibernate.show_sql enabled.
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate EHCache Second Level Caching Example Tutorial (0) | 2015.07.26 | 
|---|---|
| [Spring Data JPA] 스프링 데이터 JPA 레퍼런스 번역 (0) | 2015.07.25 | 
| [JPA] @TableGenerator (0) | 2014.06.23 | 
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
트랙백
댓글
글
링크: http://wiki.eclipse.org/EclipseLink/UserGuide/JPA/Basic_JPA_Development/Entities/Ids/TableGenerator
왜? @TableGenerator를 사용해야 하는가? : http://kkamdung.tistory.com/74
테이블 (MySQL)
CREATE TABLE `TB_SEQUENCE` (
`SEQ_NAME` varchar(255) NOT NULL COMMENT '시퀀스 이름',
`SEQ_COUNT` bigint(20) DEFAULT NULL COMMENT '시퀀스 카운트',
PRIMARY KEY (`SEQ_NAME`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Java Entity (Hbernate)
...
@Id
@TableGenerator(
name = "TEST_SEQ",
table = "TB_SEQUENCE",
pkColumnName = "SEQ_NAME",
valueColumnName = "SEQ_COUNT",
pkColumnValue = "TEST_SEQ",
initialValue = 0,
allocationSize = 1
)
@GeneratedValue(strategy = GenerationType.TABLE, generator = "TEST_SEQ")
@Column(name = "ID", length = 11)
private Integer id;
...
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Spring Data JPA] 스프링 데이터 JPA 레퍼런스 번역 (0) | 2015.07.25 | 
|---|---|
| [Hibernate] Configuration-Logging (0) | 2014.08.08 | 
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
| [Hibernate] Hibernate Tutorial Site (0) | 2014.05.25 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Configuration-Logging (0) | 2014.08.08 | 
|---|---|
| [JPA] @TableGenerator (0) | 2014.06.23 | 
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
| [Hibernate] Hibernate Tutorial Site (0) | 2014.05.25 | 
| [Hibernate] Hibernate Query Language (0) | 2014.05.22 | 
트랙백
댓글
글
Part1: http://www.e-zest.net/blog/hibernate-performance-optimization-part-1/
Part2: http://www.e-zest.net/blog/hibernate-performance-optimization-part-2/
'Java > Hibernate / JPA' 카테고리의 다른 글
| [JPA] @TableGenerator (0) | 2014.06.23 | 
|---|---|
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
| [Hibernate] Hibernate Tutorial Site (0) | 2014.05.25 | 
| [Hibernate] Hibernate Query Language (0) | 2014.05.22 | 
| [Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] hibernate-ehcache (0) | 2014.06.11 | 
|---|---|
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
| [Hibernate] Hibernate Query Language (0) | 2014.05.22 | 
| [Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 | 
| [Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Performance Optimization (0) | 2014.05.27 | 
|---|---|
| [Hibernate] Hibernate Tutorial Site (0) | 2014.05.25 | 
| [Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 | 
| [Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 | 
| [Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Tutorial Site (0) | 2014.05.25 | 
|---|---|
| [Hibernate] Hibernate Query Language (0) | 2014.05.22 | 
| [Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 | 
| [Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 | 
| [Hibernate] Ehcache, @Cache (0) | 2014.02.22 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Query Language (0) | 2014.05.22 | 
|---|---|
| [Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 | 
| [Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 | 
| [Hibernate] Ehcache, @Cache (0) | 2014.02.22 | 
| [Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 | 
|---|---|
| [Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 | 
| [Hibernate] Ehcache, @Cache (0) | 2014.02.22 | 
| [Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 | 
| [Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 | 
트랙백
댓글
글
링크: http://ehcache.org/documentation/integrations/hibernate
링크: https://docs.jboss.org/hibernate/core/4.3/devguide/en-US/html/ch06.html
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 | 
|---|---|
| [Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 | 
| [Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 | 
| [Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 | 
| [Hibernate] Hibernate Annotations (0) | 2013.12.13 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 | 
|---|---|
| [Hibernate] Ehcache, @Cache (0) | 2014.02.22 | 
| [Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 | 
| [Hibernate] Hibernate Annotations (0) | 2013.12.13 | 
| [Hibernate] Hibernate 설명 (0) | 2013.10.25 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Ehcache, @Cache (0) | 2014.02.22 | 
|---|---|
| [Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 | 
| [Hibernate] Hibernate Annotations (0) | 2013.12.13 | 
| [Hibernate] Hibernate 설명 (0) | 2013.10.25 | 
| [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스) (0) | 2013.10.16 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 | 
|---|---|
| [Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 | 
| [Hibernate] Hibernate 설명 (0) | 2013.10.25 | 
| [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스) (0) | 2013.10.16 | 
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 | 
|---|---|
| [Hibernate] Hibernate Annotations (0) | 2013.12.13 | 
| [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스) (0) | 2013.10.16 | 
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
| [Hibernate] Import sql (0) | 2013.08.20 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Annotations (0) | 2013.12.13 | 
|---|---|
| [Hibernate] Hibernate 설명 (0) | 2013.10.25 | 
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
트랙백
댓글
글
링크 :http://ldg.pe.kr/framework_reference/hibernate/ver3.1/html/index.html
링크 : http://dev.anyframejava.org/anyframe/doc/core/3.1.0/corefw/guide/hibernate-introduction.html
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate 설명 (0) | 2013.10.25 | 
|---|---|
| [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스) (0) | 2013.10.16 | 
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
| [Hibernate] Hibernate Documents (0) | 2013.08.13 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate 성능에 대한 번역 (엔트웍스) (0) | 2013.10.16 | 
|---|---|
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
| [Hibernate] Hibernate Documents (0) | 2013.08.13 | 
| [Hibernate] 예제 (0) | 2013.07.18 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
|---|---|
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate Documents (0) | 2013.08.13 | 
| [Hibernate] 예제 (0) | 2013.07.18 | 
| [Hibernate] Configuration (0) | 2013.07.18 | 
트랙백
댓글
글
링크 : http://docs.jboss.org/hibernate/orm/3.3/reference/ko-KR/html/
Criteria 질의 : http://docs.jboss.org/hibernate/orm/3.3/reference/ko-KR/html/querycriteria.html
anyframe Hibernate : http://dev.anyframejava.org/anyframe/doc/core/3.2.0/corefw/guide/hibernate-criteria.html
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
|---|---|
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
| [Hibernate] 예제 (0) | 2013.07.18 | 
| [Hibernate] Configuration (0) | 2013.07.18 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
|---|---|
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
| [Hibernate] Hibernate Documents (0) | 2013.08.13 | 
| [Hibernate] Configuration (0) | 2013.07.18 | 
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
| [Hibernate] Hibernate Manual (0) | 2013.10.11 | 
|---|---|
| [Hibernate] Import sql (0) | 2013.08.20 | 
| [Hibernate] Hibernate3 일대다 관계의 객체 저장 (0) | 2013.08.15 | 
| [Hibernate] Hibernate Documents (0) | 2013.08.13 | 
| [Hibernate] 예제 (0) | 2013.07.18 | 

RECENT COMMENT