what is hibernate ceteria ?
Answers were Sorted based on User's Feedback
Answer / kameshwar
The interface org.hibernate.Criteria represents a query
against a particular persistent class. The Session is a
factory for Criteria instances.
Criteria crit = sess.createCriteria(Cat.class);
crit.setMaxResults(50);
List cats = crit.list();
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sushant
Hibernate is a replacement of DAO layer used in traditional
JDBC based applications.
And similarly you can say that Criteria is a replacement for
query to the DB.
Used somewhat like...
Session session = sessionFactory.openSession();
Criteria demoCriteria = session.createCriteria(Animal.class);
....
later you can set some property or restrictions in the query...
demoCriteria.add( Restrictions.like("name", "Dog%") )..
...etc.
..
and then execute this criteria to get the results.
List resultsList = demoCriteria.list();
hope that helps.
Mail me for some more info if you require some.
-Sushant
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / lal ajith kumara
Criteria technology used to search operations in hibernate.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is diff string and stringbuffer
what about web architecture?
What is IOC in spring?
what is mean by hasing and maping in java platform and advantage?
2. Write a interface "Car" with the following methods void setName(String) String getName() void setColor(String) String getColor() void setModel(long) long getModel()
Which sorting algorithm is used by collections.sort() in java ?
What is the servletcontext listener and what is JspContext and page context pls tell in simple words.
Runining mutiple tomcat server in a single machine is possible Yuo wil have to duplicate configuration with different port numbers
Can any one tell me How to explain bank project desription in interview
What are the classes in the java collection framework? : java collections
VSS Objectives
How to use ANT?