Hibernate notes: 3. Data Retrieval criteria query usage (same effect as query)

Source: Internet
Author: User

Session session =NewConfiguration (). Configure (). buildsessionfactory (). opensession ();

Criteria CRI = session. createcriteria (person.Class);

// CRI. Add (expression. eq ("ID", 3 ));

CRI. Add (expression.EQ("Name", "Li Si"); // equals the relationship

List all = CRI. List ();

If(ALL. Size ()> 0 ){

Person per = (person) all. Get (0 );

System.Out. Println (Per. getname () + "-->" + per. getsex ());

}

 

 

Session session =NewConfiguration (). Configure (). buildsessionfactory (). opensession ();

Criteria CRI = session. createcriteria (person.Class);

// CRI. Add (expression. gt ("Age", 25); // query results with an age greater than 25

// CRI. Add (expression. LT ("Age", 25); // if the age is less than 25, the query Le is <= gt Yes> =

// CRI. Add (expression. Between ("Age", 25, 35); // the ages between 25 and 35 include 25, 35

CRI. Add (expression.Like("Name", "% 1%"); // list all = CRI. List ();

Iterator iter = all. iterator ();

While(ITER. hasnext ()){

Person per = (person) ITER. Next ();

System.Out. Println (Per. getname () + "-->" + per. getsex () + "-->" + per. getage ());

}

 

 

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.