-->
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.  [ 2 posts ] 
Author Message
 Post subject: Kontinuierliche Umstellung auf Hibernate
PostPosted: Fri May 19, 2006 7:49 am 
Newbie

Joined: Fri May 19, 2006 7:48 am
Posts: 1
Guten Tag,

wir benutzen momentan ein kommerzielles ORM und möchten nach Hibernate migrieren. Aber wir können dies nur schrittweise tun und müssen beide ORMs einige Zeit paralell betreiben. Aber wie?

Beispiel:
Subsystem A basiert noch auf dem alten ORM
Subsystem B basiert auf Hibernate
Die Daten sind alle auf der selben DB.
Ich möchte in EINER Transaktion etwas in A UND B ändern.

Wäre dies eine Möglichkeit?

Code:
SessionAltesOrm sessionDesAltenOrm = SF.getS();
...
//aktionen mit altem ORM auf subsystem A
...
java.sql.Connection connection = sessionDesAltenOrm.getUnderlyingConnection();
Session hibernateSession= sessionFactory.openSession(connection);
Transaction t = hibernateSession.getTransaction();
t.begin();
...
// arbeiten mit Hibernate auf subsystem B
...
hibernateSession.flush();
sessionDesAltenOrm.commit();
hibernateSession.close();



Oder gibt es bessere Wege?

Liebe Grüsse,
rokoko


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 23, 2006 7:26 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Mit JTA Transactions des Containers sollte es gehen. Ich würde aber um einen stabilen Betrieb zu gewährleisten soviel umstellen, dass innerhalb einer Methode nicht zwei ORMs verwendet werden müssen. Das zwei ORM auf das gleiche System zugreifen ist dann nicht problematisch, wenn Ihr Euer Caching so einstellt, dass es TimeOuts gibt.

Gruß Sebastian

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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

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.