<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Configuring Hibernate and Spring for JTA</title>
	<atom:link href="http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/</link>
	<description>Software development done right!</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:41:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Maciek</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-102971</link>
		<dc:creator>Maciek</dc:creator>
		<pubDate>Sat, 26 Mar 2011 17:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-102971</guid>
		<description>To Bill,

  Please read the article 2, 3 or more times. Than read this documentation: http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/orm/hibernate/LocalSessionFactoryBean.html. Maybe some day you will see the big picture. 

Great article!</description>
		<content:encoded><![CDATA[<p>To Bill,</p>
<p>  Please read the article 2, 3 or more times. Than read this documentation: <a href="http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/orm/hibernate/LocalSessionFactoryBean.html" rel="nofollow">http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/orm/hibernate/LocalSessionFactoryBean.html</a>. Maybe some day you will see the big picture. </p>
<p>Great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: md</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-97668</link>
		<dc:creator>md</dc:creator>
		<pubDate>Sat, 13 Nov 2010 10:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-97668</guid>
		<description>We are using EJB 2.1 in websphere . Hibernate core is used as ORM for persistence layer. After 2 years of working we are facing issues
1. record saved in same transaction is not found later  in the same transaction scope. 
2. data in all tables involved in a transaction is not inserted/updated. We checked at db2 layer. It doesn&#039;t show SQL for missing entries. 

We are using auto-flush and auto-close feature of hibernate. This issue has come when websphere server was going down.</description>
		<content:encoded><![CDATA[<p>We are using EJB 2.1 in websphere . Hibernate core is used as ORM for persistence layer. After 2 years of working we are facing issues<br />
1. record saved in same transaction is not found later  in the same transaction scope.<br />
2. data in all tables involved in a transaction is not inserted/updated. We checked at db2 layer. It doesn&#8217;t show SQL for missing entries. </p>
<p>We are using auto-flush and auto-close feature of hibernate. This issue has come when websphere server was going down.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-94115</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sun, 14 Feb 2010 00:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-94115</guid>
		<description>This article is useless and is yet another example how much garbage is on the internet. With how finicky it is to use Spring and Hibernate what&#039;s the point of describing something without any examples of what you are talking about?</description>
		<content:encoded><![CDATA[<p>This article is useless and is yet another example how much garbage is on the internet. With how finicky it is to use Spring and Hibernate what&#8217;s the point of describing something without any examples of what you are talking about?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-93040</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 11 Nov 2009 08:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-93040</guid>
		<description>It would be great, if you can explain with some code samples. That will help the readers to understand the problem better.</description>
		<content:encoded><![CDATA[<p>It would be great, if you can explain with some code samples. That will help the readers to understand the problem better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaas van der Ploeg</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-51343</link>
		<dc:creator>Klaas van der Ploeg</dc:creator>
		<pubDate>Wed, 27 Aug 2008 09:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-51343</guid>
		<description>&quot;It is not completely clear to me why it won&#039;t do the flushing&quot;

If there is no transaction than flushing would mean starting a JDBC transaction, inserting records, committing and thereby essentially breaking the isolation of the current session. Records will be in the database possibly to be deleted from other transactions. This is fundamental in guaranteeing consistency between transactions.</description>
		<content:encoded><![CDATA[<p>&#8220;It is not completely clear to me why it won&#8217;t do the flushing&#8221;</p>
<p>If there is no transaction than flushing would mean starting a JDBC transaction, inserting records, committing and thereby essentially breaking the isolation of the current session. Records will be in the database possibly to be deleted from other transactions. This is fundamental in guaranteeing consistency between transactions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: domenico</title>
		<link>http://blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/#comment-49607</link>
		<dc:creator>domenico</dc:creator>
		<pubDate>Sun, 10 Aug 2008 09:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.xebia.com/?p=676#comment-49607</guid>
		<description>i&#039;m actually facing this kind of problems with an ejb3 application wich use spring 2.5, hibernate and container provided jta support. The app is deployed on glassfish v2. My biggest problem is with transaction demarcation and propagation between the service layer and   the repository layer where i need to annotate all methods with @transactional annotations and call entitymanager.flush() to let hibernate commit changes on the model. Still i&#039;m facing some strange behaviours like the one that you describe. I would like to know where i can find some example for such configuration.
Best regards</description>
		<content:encoded><![CDATA[<p>i&#8217;m actually facing this kind of problems with an ejb3 application wich use spring 2.5, hibernate and container provided jta support. The app is deployed on glassfish v2. My biggest problem is with transaction demarcation and propagation between the service layer and   the repository layer where i need to annotate all methods with @transactional annotations and call entitymanager.flush() to let hibernate commit changes on the model. Still i&#8217;m facing some strange behaviours like the one that you describe. I would like to know where i can find some example for such configuration.<br />
Best regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  blog.xebia.com/2008/07/18/configuring-hibernate-and-spring-for-jta/feed/ ) in 0.61849 seconds, on Feb 9th, 2012 at 8:58 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 9:58 pm UTC -->
