JPA Crawl strategy detailed fetch (lazy, eager)

Source: Internet
Author: User

The JPA default loading method in JPA is the LAZY way of loading the relevant data when the data is actually used, and the LAZY can be used without indication fetch=fetchtype.lazy

Entity Bean:carage

Java code

package com.hibernate.jpa.bean1;

Import Java.util.HashSet;
Import Java.util.Set; 

Import javax.persistence.CascadeType;
import javax.persistence.Column;
Import javax.persistence.Entity;
Import Javax.persistence.FetchType;
Import Javax.persistence.GeneratedValue;
Import javax.persistence.Id;
Import Javax.persistence.OneToMany;  
@Entity
public class Garage {

/**
* Many to one many-to-many
*/
Private Integer gid;
Private String Garagenum;
Private Set<auto> Autos = new hashset<auto> ();  

@Id @GeneratedValue
Public Integer getgid () {
return gid;
 
public void SetGid (Integer gid) {
This.gid = gid;
 
@Column (length=20)
Public String Getgaragenum () {
return garagenum;
 
public void Setgaragenum (String garagenum) {
This.garagenum = garagenum;

@OneToMany (cascade={cascadetype.persist},mappedby=) GaraGE ")
Public set<auto> Getautos () {
return autos;
 
public void Setautos (set<auto> autos) {
This.autos = autos;
 
public void Addgarageauto (Auto auto) {
Auto.setgarage (this);
This.autos.add (auto);
}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.