Set Set mappings in Hibernate

Source: Internet
Author: User
Tags set set

Set set mapping three elements (from JavaBean mapping to data ORM)

1, Collection table (foreign key table, child table) name

2., specify the collection table foreign key <key column= "" >

3. Other elements of the collection table <element type= "" column= "" >

  <set name= "AddressSet" table= "User_addressset" order-by= "Address ASC" >             <key column= "UserId" ></ key>              <element type= "string" column= "Address" ></element>            

Note that when you access the collection element, you want new

But this is a better notation.

private int id;private String name;//private set<string> addressset;//database does not save this private set<string> Addressset=new hashset<string> ();//recommended to write  simplified code writing

  

public void Test () {Session session=sessionfactory.opensession (); Transaction tx=session.begintransaction (); User User=new user (); Set<string> set=new hashset<string> () set.add ("Bengbu");//objects in the object are Set.add ("Xuancheng") that need new, User.setname ("SS"); User.setaddressset (set); Session.save (user); Tx.commit (); Session.close ();}

  

Set Set mappings in Hibernate

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.