-->
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: setProperty nach configure
PostPosted: Fri Sep 26, 2008 12:19 pm 
Newbie

Joined: Fri Sep 26, 2008 10:27 am
Posts: 2
Hallo,

ich habe Konfigurationen in "hibernate.cfg.xml" und lade diese über conf.configure(), soweit so gut. Wenn ich alle Angaben dort habe funktioniert alles.

Nun würde ich aber gerne einige Connection-Settings erst später setzen bzw. per Hand und nicht über das XML (aber noch vor dem conf.buildSessionFactory() natürlich). Ich mache also:

Code:
// mapping and properties from hibernate.cfg.xml
conf.configure();      
      
// db connection properties
Properties prop = new Properties();
prop.setProperty("connection.url", "jdbc:mysql://*meinserver*");
prop.setProperty("connection.username", "*meinuser*");
prop.setProperty("connection.password", "*meinpass*");
      
conf.mergeProperties(prop);

conf.buildSessionFactory()


und bekomme dann leider ein:

17:58:52,187 WARN UserSuppliedConnectionProvider:23 - No connection properties specified - the user must supply JDBC connections
und ein Exception später

Wenn ich die Properties nach beiden Operationen ausgebe:
System.out.println(OHibernateSessionFactory.getConfiguration().getProperties().toString());
sind dort alle angaben aus hibernate.cfg.xml und die gesetzten vorhanden!

was läuft falsch, ich verzweifle...?


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.