Hibernate the configuration file detailed

Source: Internet
Author: User
Tags final sessions thread

Hibernate's configuration file, the default is 2: Hibernate.properties,hibernate.cfg.xml, either, optional, can also be combined to use. If there is a definition of the same attribute, the XML file overwrites the contents of the properties file, as the "Hibernate in Action" says.

These days, encountered a problem, that is, the site has several WebApp have started to use Hibernate, if Bbs.war first released, but if the Blog.war first released, then the BBS in addition to the public with the blog online users, nothing else can be read from the database.

Read the log, know that because of this release order, then Bbs.war in the Forum.cfg.xml, Thread.cfg.xml and so on, have no effect. Why is that?

It turns out that all 2 packages use Hibernate.cfg.xml, and the Hibernate configuration file is explicitly invoked in hibernateutil other ways.

Package token
Import net.sf.hibernate.*;
import net.sf.hibernate.cfg.*;
public class Hibernateutil {
Private static final sessionfactory sessionfactory
Static {
try {
/* method One */
//Sessio Nfactory = new Configuration (). Configure (). Buildsessionfactory ();
/* Method Two */
* sessionfactory = new Configuration ()
. addclass (Counter.class)
. addclass (Online.class)
. Buildsessionfactory ();
*/
/* Method three */
Sessionfactory = new Configuration (). Configure ("/token.cfg.xml"). Buildsessionfactory ();
} catch (Hibernateexception ex) {
throw new RuntimeException ("Exception Building sessionfactory:"
+ ex.getmessage ( ), ex);
}
}
public static final ThreadLocal sessions = new ThreadLocal ()
public static session currentsession () t Hrows Hibernateexception {
Session s = (sessions) session.get ();
//Open A new session, if this Thread has none yet
if (s = = null) {
S = sessionfactory.opensession ();
Session. set (s);
}
return s;
}
public static void CloseSession () throws Hibernateexception {
Sessions s = (session) Session.get ();
session.se T (NULL);
if (s!= null)
S.close ();
}
}

Originally I always use method one, and method one is simple, but must call Hibernate.cfg.xml to initialize hibernate, if two packages all use such hibernateutil, then 2 Hibernate.cfg.xml only the first function.

Method Two, you can solve the problem that a method may bring. But if you have a new pojo, you still need to modify Hibernateutil.java.

So, I tried to use the method three, also succeeded.

Large-Scale Price Reduction
  • 59% Max. and 23% Avg.
  • Price Reduction for Core Products
  • Price Reduction in Multiple Regions
undefined. /
Connect with us on Discord
  • Secure, anonymous group chat without disturbance
  • Stay updated on campaigns, new products, and more
  • Support for all your questions
undefined. /
Free Tier
  • Start free from ECS to Big Data
  • Get Started in 3 Simple Steps
  • Try ECS t5 1C1G
undefined. /

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.