MONGODB's ORM Framework Morphia annotation two —————— @Id

Source: Internet
Author: User
Tags mongodb

Classes that are @entity annotations must have a unique @Id value, which is stored in the id attribute of the MongoDB database, which is a required index. Like in the Hotel class:

@Entity

public class hotel{


@Id

Private ObjectId ID;

.....

}

As shown above: The ID of the @id annotation is objectid type, so that you don't have to worry about the ID generation problem, MONGO will automatically generate a
  A unique new Objectid object (for the ID of the auto_increment type in MySQL). If you want to use a different type as the ID, then you have to save the data
  Assign a value manually to the ID.


 

English proficiency is limited, please master treatise

Original: Http://code.google.com/p/morphia/wiki/EntityAnnotation

Related Article

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.