<?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/"
	>

<channel>
	<title>Hibernate Archives - Timo Ernst</title>
	<atom:link href="https://www.timo-ernst.net/blog/tag/hibernate/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.timo-ernst.net/blog/tag/hibernate/</link>
	<description>Developer • YouTuber • Blogger</description>
	<lastBuildDate>Wed, 05 Sep 2018 13:44:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.timo-ernst.net/wp-content/uploads/2021/03/cropped-Timo-Ernst-Small-32x32.jpg</url>
	<title>Hibernate Archives - Timo Ernst</title>
	<link>https://www.timo-ernst.net/blog/tag/hibernate/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>.remove() and .contains() not working on your Java set?</title>
		<link>https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/</link>
					<comments>https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/#comments</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Wed, 08 Jun 2011 18:36:36 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Persistency]]></category>
		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2850</guid>

					<description><![CDATA[<p>If you suddenly experience problems callling set.remove() and set.contains() on your Java Set instances, you might be using Hibernate, which replaces your Set instance with its own version (PersistentSet), which uses a HashSet internally to store your data. For example, the problem I faced was the following: Person.java public class Person(){ String _name; public Person(String [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/">.remove() and .contains() not working on your Java set?</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/" rel="bookmark" title="Correct naming convention for boolean values in Hibernate mapping files">Correct naming convention for boolean values in Hibernate mapping files</a></li>
<li><a href="https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/" rel="bookmark" title="Quickfix: Hibernate integration for ZK applications">Quickfix: Hibernate integration for ZK applications</a></li>
<li><a href="https://www.timo-ernst.net/blog/2010/04/04/flash-the-new-java/" rel="bookmark" title="Flash &#8211; The new Java?">Flash &#8211; The new Java?</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>Correct naming convention for boolean values in Hibernate mapping files</title>
		<link>https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/</link>
					<comments>https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Wed, 18 May 2011 14:28:32 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>
		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2841</guid>

					<description><![CDATA[<p>Ok, this just took me a while to figure out so I thought I&#8217;d share it here. If you have a boolean variable that follows the naming convention &#8220;isValue&#8221; (e.g. boolean isPerson = false;), then the according mapping file property name may not include the &#8220;is&#8221; part of the name, for example: &#60;property name="person" column="is_person" [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/">Correct naming convention for boolean values in Hibernate mapping files</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/" rel="bookmark" title="Quickfix: Hibernate integration for ZK applications">Quickfix: Hibernate integration for ZK applications</a></li>
<li><a href="https://www.timo-ernst.net/blog/2011/06/08/remove-and-contains-not-working-on-your-java-set/" rel="bookmark" title=".remove() and .contains() not working on your Java set?">.remove() and .contains() not working on your Java set?</a></li>
<li><a href="https://www.timo-ernst.net/blog/2017/07/26/understanding-vue-js-reactivity-depth-object-defineproperty/" rel="bookmark" title="Understanding Vue.js Reactivity in Depth with Object.defineProperty()">Understanding Vue.js Reactivity in Depth with Object.defineProperty()</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Quickfix: Hibernate integration for ZK applications</title>
		<link>https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/</link>
					<comments>https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/#respond</comments>
		
		<dc:creator><![CDATA[Timo]]></dc:creator>
		<pubDate>Sun, 24 Apr 2011 17:20:45 +0000</pubDate>
				<category><![CDATA[Nerd stuff]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[ZK]]></category>
		<guid isPermaLink="false">http://www.timo-ernst.net/?p=2792</guid>

					<description><![CDATA[<p>If you&#8217;re using the awesome ZK framework together with Hibernate you might run into some issues where Hibernate behaves a little funky while the application runs. The trouble&#8217;s cause According to the developers of ZK, the reason for this is ZK&#8217;s multi-threaded event model. Whenever an event gets fired, a new event thread is created. [&#8230;]</p>
<p>The post <a href="https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/">Quickfix: Hibernate integration for ZK applications</a> appeared first on <a href="https://www.timo-ernst.net">Timo Ernst</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>Related posts:</h2><ol>
<li><a href="https://www.timo-ernst.net/blog/2011/05/18/correct-naming-convention-for-boolean-values-in-hibernate-mapping-files/" rel="bookmark" title="Correct naming convention for boolean values in Hibernate mapping files">Correct naming convention for boolean values in Hibernate mapping files</a></li>
<li><a href="https://www.timo-ernst.net/blog/2011/04/20/java-threads-and-the-list-interface/" rel="bookmark" title="Vector vs. ArrayList in multi-threaded Java applications">Vector vs. ArrayList in multi-threaded Java applications</a></li>
<li><a href="https://www.timo-ernst.net/blog/2011/11/22/zk-user-group-conference-in-mannheim-germany/" rel="bookmark" title="ZK user group conference in Mannheim, Germany">ZK user group conference in Mannheim, Germany</a></li>
</ol>
</div>
]]></description>
		
					<wfw:commentRss>https://www.timo-ernst.net/blog/2011/04/24/quickfix-hibernate-integration-for-zk-applications/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
