/* * 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 java.util.Objects; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.OrderBy; import org.hibernate.annotations.NaturalId; import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; import org.junit.Test; import static org.hibernate.testing.transaction.TransactionUtil.doInJPA; /** * @author Vlad Mihalcea */ public class BidirectionalOrderByListTest extends BaseEntityManagerFunctionalTestCase { @Override protected Class<?>[] getAnnotatedClasses() { return new Class<?>[] { Person.class, Phone.class, }; } @Test public void testLifecycle() { doInJPA( this::entityManagerFactory, entityManager -> { Person person = new Person( 1L ); entityManager.persist( person ); person.addPhone( new Phone( 1L, "landline", "028-234-9876" ) ); person.addPhone( new Phone( 2L, "mobile", "072-122-9876" ) ); entityManager.flush(); person.removePhone( person.getPhones().get( 0 ) ); } ); doInJPA( this::entityManagerFactory, entityManager -> { entityManager.find( Person.class, 1L ).getPhones().size(); } ); } @Entity(name = "Person") public static class Person { @Id private Long id; //tag::collections-bidirectional-ordered-list-order-by-example[] @OneToMany(mappedBy = "person", cascade = CascadeType.ALL) @OrderBy("number") private List<Phone> phones = new ArrayList<>(); //end::collections-bidirectional-ordered-list-order-by-example[] public Person() { } public Person(Long id) { this.id = id; } public List<Phone> getPhones() { return phones; } public void addPhone(Phone phone) { phones.add( phone ); phone.setPerson( this ); } public void removePhone(Phone phone) { phones.remove( phone ); phone.setPerson( null ); } } @Entity(name = "Phone") public static class Phone { @Id private Long id; private String type; @Column(name = "`number`", unique = true) @NaturalId private String number; @ManyToOne private Person person; public Phone() { } public Phone(Long id, String type, String number) { this.id = id; this.type = type; this.number = number; } public Long getId() { return id; } public String getType() { return type; } public String getNumber() { return number; } public Person getPerson() { return person; } public void setPerson(Person person) { this.person = person; } @Override public boolean equals(Object o) { if ( this == o ) { return true; } if ( o == null || getClass() != o.getClass() ) { return false; } Phone phone = (Phone) o; return Objects.equals( number, phone.number ); } @Override public int hashCode() { return Objects.hash( number ); } } }