package org.hibernate.test.annotations.loader; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import org.hibernate.annotations.Fetch; import org.hibernate.annotations.FetchMode; @Entity public class Player { private Long id; private Team team; private String name; @Id @GeneratedValue public Long getId() { return id; } public void setId(Long id) { this.id = id; } @ManyToOne(targetEntity = Team.class) @Fetch(FetchMode.SELECT) @JoinColumn(name = "team_id") public Team getTeam() { return team; } public void setTeam(Team team) { this.team = team; } public String getName() { return name; } public void setName(String name) { this.name = name; } }