In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article is about how to use Hibernate code. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
Hibernate is an upgraded version of JDBC that connects exclusively to the database. It is easier to use than JDBC and does not need to enter a lot of connection database code. There is no need to extract data from the database in a loop. The method to use is:
1. Create a new Java ordinary project
two。 Create user library to join the jar package in three places: two hibernate and a MYSQL driver
3. Create a hibernate profile, hibernate.cfg.xml
4. Establish the entity class user
5. Find the eg to the bottom of the hibernate file to find the user.hbm.xml mapping file, and copy to the same file as the mapping file.
6. Add the mapping file user.hbm.xml part to the hibernate.cfg.xml
7. Create a database, and then import entity mapping into the database using hibernate
Here is the code for the specific implementation:
/ / using hibernate, implement group by and sum and count Session sess = this.getSession (false); List list = null; if (sess! = null) {Criteria cri = sess.createCriteria (getModelClass ()); cri.add (Expression.allEq (props)); / / always count id ProjectionList projList = Projections.projectionList (); projList.add (Projections.sum (sum)); projList.add (Projections.groupProperty (group1)); projList.add (Projections.groupProperty (group2)) ProjList.add (Projections.count (count)); cri.setProjection (projList); list = cri.list ();} listlist = list = = null? New ArrayList (): list; return list; / / use hibernate to implement group by and sum and count List listByGroupSum = dao.getListByGroupSumCP (props); Iterator iter = listByGroupSum.iterator (); if (! iter.hasNext ()) {System.out.println ("No objects to display.");} while (iter.hasNext ()) {System.out.println ("New object"); Object [] obj = (Object []) iter.next () For (int I = 0; I < obj.length; iTunes +) {System.out.println (obj [I]);}} Thank you for reading! This is the end of this article on "how to use Hibernate code". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.