HHH-11186 - Add examples for all Hibernate annotations
Document @OrderBy annotation
This commit is contained in:
parent
73affabe44
commit
77ea6186f7
|
@ -1077,7 +1077,7 @@ The https://docs.jboss.org/hibernate/orm/{majorMinorVersion}/javadocs/org/hibern
|
|||
|
||||
It differs from the JPA <<annotations-jpa-orderby>> annotation because the JPA annotation expects a JPQL order-by fragment, not an SQL directive.
|
||||
|
||||
//TODO: Add example
|
||||
See the <<chapters/domain/collections.adoc#collections-customizing-ordered-by-sql-clause, `@OrderBy` mapping>> section for more info.
|
||||
|
||||
[[annotations-hibernate-paramdef]]
|
||||
==== `@ParamDef`
|
||||
|
|
|
@ -410,6 +410,41 @@ include::{extrasdir}/collections-customizing-ordered-list-ordinal-persist-exampl
|
|||
----
|
||||
====
|
||||
|
||||
[[collections-customizing-ordered-by-sql-clause]]
|
||||
===== Customizing ORDER BY SQL clause
|
||||
|
||||
While the JPA
|
||||
http://docs.oracle.com/javaee/7/api/javax/persistence/OrderBy.html[`@OrderBy`] annotation allows you to specify the entity attributes used for sorting
|
||||
when fetching the current annotated collection, the Hibernate specific
|
||||
https://docs.jboss.org/hibernate/orm/{majorMinorVersion}/javadocs/org/hibernate/annotations/OrderBy.html[`@OrderBy`] annotation is used to specify a *SQL* clause instead.
|
||||
|
||||
In the following example, the `@OrderBy` annotations uses the `CHAR_LENGTH` SQL function to order the `Article` entities by the size of their contents.
|
||||
|
||||
[[collections-customizing-ordered-by-sql-clause-mapping-example]]
|
||||
.`@OrderBy` mapping example
|
||||
====
|
||||
[source,java]
|
||||
----
|
||||
include::{sourcedir}/OrderedBySQLTest.java[tags=collections-customizing-ordered-by-sql-clause-mapping-example,indent=0]
|
||||
----
|
||||
====
|
||||
|
||||
When fetching the `articles` collection, Hibernate uses the ORDER BY SQL clause provided by the mapping:
|
||||
|
||||
[[collections-customizing-ordered-by-sql-clause-fetching-example]]
|
||||
.`@OrderBy` fetching example
|
||||
====
|
||||
[source,java]
|
||||
----
|
||||
include::{sourcedir}/OrderedBySQLTest.java[tags=collections-customizing-ordered-by-sql-clause-fetching-example,indent=0]
|
||||
----
|
||||
|
||||
[source,sql]
|
||||
----
|
||||
include::{extrasdir}/collections-customizing-ordered-by-sql-clause-fetching-example.sql[]
|
||||
----
|
||||
====
|
||||
|
||||
[[collections-set]]
|
||||
==== Sets
|
||||
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
select
|
||||
a.person_id as person_i4_0_0_,
|
||||
a.id as id1_0_0_,
|
||||
a.content as content2_0_1_,
|
||||
a.name as name3_0_1_,
|
||||
a.person_id as person_i4_0_1_
|
||||
from
|
||||
Article a
|
||||
where
|
||||
a.person_id = ?
|
||||
order by
|
||||
CHAR_LENGTH(a.name) desc
|
|
@ -0,0 +1,176 @@
|
|||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.userguide.collections;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
|
||||
import org.hibernate.dialect.H2Dialect;
|
||||
import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase;
|
||||
|
||||
import org.hibernate.testing.RequiresDialect;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hibernate.testing.transaction.TransactionUtil.doInJPA;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* @author Vlad Mihalcea
|
||||
*/
|
||||
@RequiresDialect(H2Dialect.class)
|
||||
public class OrderedBySQLTest extends BaseEntityManagerFunctionalTestCase {
|
||||
|
||||
@Override
|
||||
protected Class<?>[] getAnnotatedClasses() {
|
||||
return new Class<?>[] {
|
||||
Person.class,
|
||||
Article.class,
|
||||
};
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLifecycle() {
|
||||
doInJPA( this::entityManagerFactory, entityManager -> {
|
||||
Person person = new Person();
|
||||
person.setId( 1L );
|
||||
person.setName( "Vlad Mihalcea" );
|
||||
|
||||
person.addArticle(
|
||||
new Article(
|
||||
"High-Performance JDBC",
|
||||
"Connection Management, Statement Caching, Batch Updates"
|
||||
)
|
||||
);
|
||||
person.addArticle(
|
||||
new Article(
|
||||
"High-Performance Hibernate",
|
||||
"Associations, Lazy fetching, Concurrency Control, Second-level Caching"
|
||||
)
|
||||
);
|
||||
entityManager.persist( person );
|
||||
} );
|
||||
doInJPA( this::entityManagerFactory, entityManager -> {
|
||||
//tag::collections-customizing-ordered-by-sql-clause-fetching-example[]
|
||||
Person person = entityManager.find( Person.class, 1L );
|
||||
assertEquals(
|
||||
"High-Performance Hibernate",
|
||||
person.getArticles().get( 0 ).getName()
|
||||
);
|
||||
//end::collections-customizing-ordered-by-sql-clause-fetching-example[]
|
||||
} );
|
||||
}
|
||||
|
||||
//tag::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
@Entity(name = "Person")
|
||||
public static class Person {
|
||||
|
||||
@Id
|
||||
private Long id;
|
||||
|
||||
private String name;
|
||||
|
||||
@OneToMany(mappedBy = "person", cascade = CascadeType.ALL)
|
||||
@org.hibernate.annotations.OrderBy(clause = "CHAR_LENGTH(name) DESC")
|
||||
private List<Article> articles = new ArrayList<>();
|
||||
|
||||
//Getters and setters are omitted for brevity
|
||||
//end::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
|
||||
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 List<Article> getArticles() {
|
||||
return articles;
|
||||
}
|
||||
|
||||
public void addArticle(Article article) {
|
||||
article.setPerson( this );
|
||||
articles.add( article );
|
||||
}
|
||||
//tag::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
}
|
||||
|
||||
@Entity(name = "Article")
|
||||
public static class Article {
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
private Long id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String content;
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
private Person person;
|
||||
|
||||
private Article() {
|
||||
}
|
||||
|
||||
public Article(String name, String content) {
|
||||
this.name = name;
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
//Getters and setters are omitted for brevity
|
||||
//end::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
|
||||
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 String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public Person getPerson() {
|
||||
return person;
|
||||
}
|
||||
|
||||
public void setPerson(Person person) {
|
||||
this.person = person;
|
||||
}
|
||||
//tag::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
}
|
||||
//end::collections-customizing-ordered-by-sql-clause-mapping-example[]
|
||||
}
|
Loading…
Reference in New Issue