Hibernate mapping Relationship configuration (ii)

Source: Internet
Author: User

Two or one-to-many (unidirectional)

Bean:

 Public classCarImplementsserializable{Private intID; PrivateString name; Privateuser User; ....} Public classUserImplementsSerializable {Private intID; PrivateString name; PrivateSet<car>cars; ....}

XML configuration:

Car.hbm.xml:<classname= "Car">        <!--ID is to configure the primary key name is the attribute in the class and the primary key mapping generator: The Generation policy that represents the primary key -        <IDname= "id">            <Generatorclass= "Native" />        </ID>        <!--property is used to make one by one of the attributes in the class and the fields of the table. -        < Propertyname= "Name" />            </class>User.hbm.xml:<classname= "User">        <!--ID is to configure the primary key name is the attribute in the class and the primary key mapping generator: The Generation policy that represents the primary key -        <IDname= "id">            <Generatorclass= "Native" />        </ID>        <!--property is used to make one by one of the attributes in the class and the fields of the table. -        < Propertyname= "Name" />                <Setname= "Cars"Cascade= "All">            <Keycolumn= "UID" />            <One-to-manyclass= "Car"/>        </Set>    </class>

Annotation configuration:

@Entity Public classCarImplementsserializable{@Id @GeneratedValue Public intgetId () {returnID; }} @Entity Public classUserImplementsSerializable {@Id @GeneratedValue Public intgetId () {returnID; } @OneToMany (Cascade=cascadetype.all) @JoinColumn (name= "UID")     PublicSet<car>Getcars () {returncars; }}

Hibernate mapping Relationship configuration (ii)

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.