These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Mix hibernate configuration data in properties and cfg.xml
PostPosted: Wed Nov 22, 2006 6:13 pm 
Newbie

Joined: Sun Oct 15, 2006 11:20 pm
Posts: 13
Hi,

Can I mix hibernate configuration data in properties and cfg.xml files?
i.e. part of it is in properties and part of it is in cfg.xml files?

Here is my code:
Code:
   Properties properties = new Properties();
        // is is the inputstream of the property files
        properties.load(is);
          
        Configuration conf = new Configuration().configure("/hibernate.cfg.xml");
           conf.setProperties(properties);
            sessionFactory = conf.buildSessionFactory();


But I get this exception, when i run it:

Code:
Initial SessionFactory creation failed.org.hibernate.HibernateException: Hibernate Dialect must be explicitly set


I did set the database dialect in my hibernate.cfg.xml file:
Code:
   <property name="dialect">
         org.hibernate.dialect.MySQLInnoDBDialect
      </property>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.