<?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>web development helpdesk &#187; hibernate</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/hibernate/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to map an array using hibernate?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-map-an-array-using-hibernate?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-map-an-array-using-hibernate</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-map-an-array-using-hibernate#comments</comments>
		<pubDate>Mon, 20 Apr 2009 10:12:45 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[mapping]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=907</guid>
		<description><![CDATA[The mapping configuration can vary a little depending on the exact relationship involved but the following example should give you an isea what is required. In this example there is a one-to-many relationship to the objects in the array. The Parent class has array of Child instances as a property. public class Parent { private [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-map-an-array-using-hibernate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find the actual Object being proxied by HibernateProxy?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-find-the-actual-object-being-proxied-by-hibernateproxy</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy#comments</comments>
		<pubDate>Sun, 14 Dec 2008 13:24:54 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[cglib]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[HibernateProxy]]></category>
		<category><![CDATA[LazyInitializer]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=688</guid>
		<description><![CDATA[The underlying Object can be found using the LazyInitializer instance available from the proxy. HibernateProxy proxy = (HibernateProxy) o; Object actual = proxy.getHibernateLazyInitializer().getImplementation(); Related posts: How to get Class object for an array Arrays in Java are actually Objects and sometimes we need... Where can I find details of the Java language The Java Language [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-find-the-actual-object-being-proxied-by-hibernateproxy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am using JPA with Hibernate and want it to update my schema automatically whenever I change my mapping configuration</title>
		<link>http://helpdesk.objects.com.au/java/i-am-using-jpa-with-hibernate-and-want-it-to-update-my-schema-automatically-whenever-i-change-my-mapping-configuration?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-am-using-jpa-with-hibernate-and-want-it-to-update-my-schema-automatically-whenever-i-change-my-mapping-configuration</link>
		<comments>http://helpdesk.objects.com.au/java/i-am-using-jpa-with-hibernate-and-want-it-to-update-my-schema-automatically-whenever-i-change-my-mapping-configuration#comments</comments>
		<pubDate>Fri, 28 Nov 2008 08:59:37 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[application server]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[ddl]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[jpa]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[schema]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=537</guid>
		<description><![CDATA[Add the following to persistence.xml: &#60;property name="hibernate.hbm2ddl.auto" value="update"/&#62; Related posts: How to map an array using hibernate? The mapping configuration can vary a little depending on the... How to specify log4j configuration in spring application? If you do not want to store your log4j configuration... How to specify a static constant in my Spring configuration? [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/i-am-using-jpa-with-hibernate-and-want-it-to-update-my-schema-automatically-whenever-i-change-my-mapping-configuration/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m using JPA (Hibernate) and Spring and have a EntityManagerFactory but I need a SessionFactory.</title>
		<link>http://helpdesk.objects.com.au/java/im-using-jpa-hibernate-and-spring-and-have-a-entitymanagerfactory-but-i-need-a-sessionfactory?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=im-using-jpa-hibernate-and-spring-and-have-a-entitymanagerfactory-but-i-need-a-sessionfactory</link>
		<comments>http://helpdesk.objects.com.au/java/im-using-jpa-hibernate-and-spring-and-have-a-entitymanagerfactory-but-i-need-a-sessionfactory#comments</comments>
		<pubDate>Sat, 11 Oct 2008 00:29:08 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[jpa]]></category>
		<category><![CDATA[SessionFactory]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=424</guid>
		<description><![CDATA[There is a getSessionFactory() method in LocalContainerEntityManagerFactoryBean, so you can define a session factory bean in spring using the following: &#60;bean id=&#34;sessionFactory&#34; factory-bean=&#34;entityManagerFactory&#34; factory-method=&#34;getSessionFactory&#34; /&#62; Related posts: How to add a protocol to my Restlet application using Spring? To add a single Protocol you can set the client... How to specify a static constant in [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/im-using-jpa-hibernate-and-spring-and-have-a-entitymanagerfactory-but-i-need-a-sessionfactory/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

