<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:coop="http://www.google.com/coop/namespace"
	>

<channel>
	<title>Mind DiaryHibernate</title>
	<atom:link href="http://minddiary.com/category/hibernate/feed/" rel="self" type="application/rss+xml" />
	<link>http://minddiary.com</link>
	<description>There is only one way to learn. It&#039;s through action!</description>
	<lastBuildDate>Sat, 27 Feb 2010 11:27:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://minddiary.com/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>The Second Level Cache in Hibernate : Settings and Configurations.</title>
		<link></link>
		<comments>http://minddiary.com/2009/06/09/the-second-level-cache-in-hibernate-settings-and-configurations/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:35:30 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[hibernate Cache]]></category>
		<category><![CDATA[second level cache]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2009/06/09/the-second-level-cache-in-hibernate-settings-and-configurations/</guid>
		<description><![CDATA[


A Hibernate Session is a transaction-level cache of persistent data. We can configure a cluster or JVM-level (SessionFactory-level) cache on a class-by-class and collection-by-collection basis. We can also plug in a clustered cache into Hibernate. At the time of providing cache we need to understand that when we are updating the persistence DB it will<p><a href="http://minddiary.com/2009/06/09/the-second-level-cache-in-hibernate-settings-and-configurations/">The Second Level Cache in Hibernate : Settings and Configurations.</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2009/06/09/the-second-level-cache-in-hibernate-settings-and-configurations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[hibernate Cache]]></coop:keyword>
		<coop:keyword><![CDATA[second level cache]]></coop:keyword>
	</item>
		<item>
		<title>List of Cache Providers in Hibernate and their Concurrency Support details</title>
		<link></link>
		<comments>http://minddiary.com/2009/06/09/list-of-cache-providers-in-hibernate-and-their-concurrency-support-details/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:12:01 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[EHCache]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[JBoss Cache]]></category>
		<category><![CDATA[hibernate Cache]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2009/06/09/list-of-cache-providers-in-hibernate-and-their-concurrency-support-details/</guid>
		<description><![CDATA[Here in this port you can find the list of Cache providers and their Concurrency support details. (Exerted from Official Hibernate Tutorial)
EHCache (Easy Hibernate Cache)
(org.hibernate.cache.EhCacheProvider)

It is fast. 
lightweight. 
Easy-to-use. 
Supports read-only and read/write caching. 
Supports memory-based and disk-based caching. 
Does not support clustering. 

OSCache (Open Symphony Cache)
(org.hibernate.cache.OSCacheProvider)

It is a powerful . 
flexible package 
supports read-only<p><a href="http://minddiary.com/2009/06/09/list-of-cache-providers-in-hibernate-and-their-concurrency-support-details/">List of Cache Providers in Hibernate and their Concurrency Support details</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2009/06/09/list-of-cache-providers-in-hibernate-and-their-concurrency-support-details/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
			<coop:keyword><![CDATA[EHCache]]></coop:keyword>
		<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[JBoss Cache]]></coop:keyword>
		<coop:keyword><![CDATA[hibernate Cache]]></coop:keyword>
	</item>
		<item>
		<title>Hibernate generator classes</title>
		<link></link>
		<comments>http://minddiary.com/2008/07/09/hibernate-generator-classes/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 13:10:39 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2008/07/09/hibernate-generator-classes/</guid>
		<description><![CDATA[






Extracted from Hibernate online official tutorials




In Hibernate the optional &#60;generator&#62; child element names a Java class used to generate unique identifiers for instances of the persistent class.

If any parameters are required to configure or initialize the generator instance, they are passed using the &#60;param&#62; element.

&#60;id name="id" type="long" column="cat_id"&#62;
       <p><a href="http://minddiary.com/2008/07/09/hibernate-generator-classes/">Hibernate generator classes</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2008/07/09/hibernate-generator-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[ORM]]></coop:keyword>
	</item>
		<item>
		<title>Advantages of Hibernate</title>
		<link></link>
		<comments>http://minddiary.com/2007/10/19/advantages-of-hibernate/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 04:48:03 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/10/19/advantages-of-hibernate/</guid>
		<description><![CDATA[
Caching objects. The session is a transaction-level cache of persistent objects. You may also enable a JVM-level/cluster cache to memory and/or local disk.


Executing SQL statements later, when needed. The session never issues an INSERT or UPDATE until it is actually needed. So if an exception occurs and you need to abort the transaction, some statements<p><a href="http://minddiary.com/2007/10/19/advantages-of-hibernate/">Advantages of Hibernate</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/10/19/advantages-of-hibernate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[Java]]></coop:keyword>
		<coop:keyword><![CDATA[ORM]]></coop:keyword>
	</item>
		<item>
		<title>Test your Spring &#8211; Hibernate Applications using Unitils</title>
		<link></link>
		<comments>http://minddiary.com/2007/03/26/test-your-spring-hibernate-applications-using-unitils/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 06:53:58 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[JUnit]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[unitils]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/03/26/test-your-spring-hibernate-applications-using-unitils/</guid>
		<description><![CDATA[Unitils is an open source library aimed at making unit testing easy and maintainable. Unitils builds further on existing libraries like DBUnit and EasyMock and integrates with JUnit and TestNG. This article will help you to test Spring- hibernate applications easily using unitles.
Technorati: spring, hibernate, unitils

Book Mark it-> del.icio.us &#124;  Reddit &#124;  Slashdot<p><a href="http://minddiary.com/2007/03/26/test-your-spring-hibernate-applications-using-unitils/">Test your Spring &#8211; Hibernate Applications using Unitils</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/03/26/test-your-spring-hibernate-applications-using-unitils/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[JUnit]]></coop:keyword>
		<coop:keyword><![CDATA[Spring]]></coop:keyword>
		<coop:keyword><![CDATA[unitils]]></coop:keyword>
	</item>
		<item>
		<title>UML models of open source projects</title>
		<link></link>
		<comments>http://minddiary.com/2007/02/28/uml-models-of-open-source-projects/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 05:08:30 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/02/28/uml-models-of-open-source-projects/</guid>
		<description><![CDATA[This site includes the UML models of some great open source projects like JBoss, Spring, Hibernate etc. Its really helping me to understand this frameworks.,

  
  Technorati : Hibernate, JBoss, Opensource, Spring, Tomcat, UML

Book Mark it-> del.icio.us &#124;  Reddit &#124;  Slashdot &#124;  Digg &#124; <p><a href="http://minddiary.com/2007/02/28/uml-models-of-open-source-projects/">UML models of open source projects</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/02/28/uml-models-of-open-source-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[Spring]]></coop:keyword>
		<coop:keyword><![CDATA[Tomcat]]></coop:keyword>
		<coop:keyword><![CDATA[opensource]]></coop:keyword>
	</item>
		<item>
		<title>Hibernate &#8211; Difference between session&#039;s get() and load()</title>
		<link></link>
		<comments>http://minddiary.com/2007/01/20/hibernate-difference-between-sessions-get-and-load/#comments</comments>
		<pubDate>Sat, 20 Jan 2007 05:22:16 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/01/20/hibernate-difference-between-sessions-get-and-load/</guid>
		<description><![CDATA[Today I went  through a great post by Mr. Ganeshji Marwah which will be very useful to beginners. This post is regarding with the difference between Hibernate session&#8217;s get() and load() methods. As he describes it is very helpful to improve the performance level. Please click here to visit this post.
Technorati tags: Hibernate 

Book<p><a href="http://minddiary.com/2007/01/20/hibernate-difference-between-sessions-get-and-load/">Hibernate &#8211; Difference between session&#039;s get() and load()</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/01/20/hibernate-difference-between-sessions-get-and-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
	</item>
		<item>
		<title>&#039;Hibernate Dialect property&#039; for Different Databases</title>
		<link></link>
		<comments>http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 10:04:55 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/01/08/hibernate-dialect-property-for-different-databases/</guid>
		<description><![CDATA[Hibernate is the most common and famous ORM using these days. It has a property called &#8220;Dialect&#8221; through which we tells Hibernate that we are using &#8216;this specific&#8217; database. Here in this post you can see the dialect property values which we have to give for different databases. You can read more about this from<p><a href="http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/">&#039;Hibernate Dialect property&#039; for Different Databases</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[ORM]]></coop:keyword>
	</item>
		<item>
		<title>Commonly used Generators in &#039;Hibernate&#039;</title>
		<link></link>
		<comments>http://minddiary.com/2007/01/05/hibernate-commonly-used-generators/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 06:50:18 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/01/05/hibernate-commonly-used-generators/</guid>
		<description><![CDATA[

  Generator
  Description


increment
It generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. It should not the used in the clustered environment.


identity
It supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The returned identifier is of type<p><a href="http://minddiary.com/2007/01/05/hibernate-commonly-used-generators/">Commonly used Generators in &#039;Hibernate&#039;</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/01/05/hibernate-commonly-used-generators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[J2EE]]></coop:keyword>
		<coop:keyword><![CDATA[Java]]></coop:keyword>
		<coop:keyword><![CDATA[ORM]]></coop:keyword>
	</item>
		<item>
		<title>The new version of Compass is released</title>
		<link></link>
		<comments>http://minddiary.com/2006/11/30/the-new-version-of-compass-is-released/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 04:44:26 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Compass]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2006/11/30/the-new-version-of-compass-is-released/</guid>
		<description><![CDATA[
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->

<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
The third milestone release of version 1.1 ( version 1.1 M3) of COMPASS is released. It includes the following major features&#8230;

Support for polymorphic relationships
Better cyclic mappings support
FS Transactional Log
Runtime Settings
JdbcDirectory support Oracle 9
Initial XA Support
Performance Improvement

At the same time one other important news is that, hibernate is already started to add more features which will<p><a href="http://minddiary.com/2006/11/30/the-new-version-of-compass-is-released/">The new version of Compass is released</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



Related posts:<ol><li><a href='http://minddiary.com/2010/02/26/wink-a-framework-for-restful-web-services-from-apache/' rel='bookmark' title='Permanent Link: Wink &ndash; A framework for RESTful web services from Apache'>Wink &ndash; A framework for RESTful web services from Apache</a> <small>Apache Wink 1.0 is a complete Java based solution for...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2006/11/30/the-new-version-of-compass-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Compass]]></coop:keyword>
		<coop:keyword><![CDATA[Frameworks]]></coop:keyword>
		<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[J2EE]]></coop:keyword>
		<coop:keyword><![CDATA[Java]]></coop:keyword>
		<coop:keyword><![CDATA[Search]]></coop:keyword>
		<coop:keyword><![CDATA[opensource]]></coop:keyword>
	</item>
	</channel>
</rss>
