Typical application of XDoclet in hibernate 1

Source: Internet
Author: User
Table Declaration/**
* @ Hibernate. Class table = "author"
 */

One-to-one

  /**
* @ Hibernate. One-to-one cascade = "all" constrained = "true"
*/
Public Person getperson (){
Return Person;
}

Multiple to one, one to multiple
/**
* @ Hibernate. set lazy = "true" inverse = "true" cascade = "all"
* @ Hibernate. Collection-key column = "authorid"
* @ Hibernate. Collection-one-to-register class = "com. CQ. Publication"
*/
PublicSet getpublications (){
ReturnPublications;
}

/**
* @ hibernate. export-to-one column = "authorid"
*/
Public author getauthor () {
return author;
}

many-to-many /**
* @ hibernate. set lazy = "true" table = "author_work"
* @ hibernate. collection-key column = "author_id"
* @ hibernate. collection-tables-to-operate column = "work_id" class = "com. RQ. work "
*/
Public set getworks () {
return works;
}

 /**
* @ Hibernate. set lazy = "true" table = "author_work"
* @ Hibernate. Collection-key column = "work_id"
* @ Hibernate. Collection-allow-to-assign column = "author_id" class = "com. RQ. Author"
*/
PublicSet getauthors (){
ReturnAuthors;
}

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.