<?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: Getting Started Quickly with Hibernate Annotations</title> <atom:link href="http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/feed/" rel="self" type="application/rss+xml" /><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/</link> <description>&#34;Simple Software&#34;</description> <lastBuildDate>Wed, 10 Mar 2010 15:23:38 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Jaroslav Záruba</title><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/comment-page-1/#comment-1138</link> <dc:creator>Jaroslav Záruba</dc:creator> <pubDate>Wed, 20 Jan 2010 16:13:07 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=5#comment-1138</guid> <description>Any progress Greg? We&#039;re trying to come up with something here:
http://stackoverflow.com/questions/2049371
(no luck so far though)</description> <content:encoded><![CDATA[<p>Any progress Greg? We&#8217;re trying to come up with something here:<br
/> <a
href="http://stackoverflow.com/questions/2049371" rel="nofollow">http://stackoverflow.com/questions/2049371</a><br
/> (no luck so far though)</p> ]]></content:encoded> </item> <item><title>By: Greg Bancock</title><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/comment-page-1/#comment-725</link> <dc:creator>Greg Bancock</dc:creator> <pubDate>Thu, 13 Aug 2009 01:15:38 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=5#comment-725</guid> <description>I am getting the following exception:
Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer]I have tried using a different log4j.jar as suggested in articles about this problem, but it is still the same.Do you know how to fix this exception?</description> <content:encoded><![CDATA[<p>I am getting the following exception:<br
/> Unable to instantiate default tuplizer [org.hibernate.tuple.entity.PojoEntityTuplizer]</p><p>I have tried using a different log4j.jar as suggested in articles about this problem, but it is still the same.</p><p>Do you know how to fix this exception?</p> ]]></content:encoded> </item> <item><title>By: Lincoln</title><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/comment-page-1/#comment-259</link> <dc:creator>Lincoln</dc:creator> <pubDate>Sun, 12 Apr 2009 17:17:52 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=5#comment-259</guid> <description>Here is the POM that Nambi provided:&lt;project&gt;
&lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
&lt;groupId&gt;net.sf.emarket&lt;/groupId&gt;
&lt;artifactId&gt;hibernate-example&lt;/artifactId&gt;
&lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;&lt;dependencies&gt;
&lt;dependency&gt;
&lt;groupId&gt;javax.annotation&lt;/groupId&gt;
&lt;artifactId&gt;jsr250-api&lt;/artifactId&gt;
&lt;version&gt;1.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;javax.transaction&lt;/groupId&gt;
&lt;artifactId&gt;jta&lt;/artifactId&gt;
&lt;version&gt;1.1&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.hibernate&lt;/groupId&gt;
&lt;artifactId&gt;hibernate-core&lt;/artifactId&gt;
&lt;version&gt;3.3.1.GA&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.hibernate&lt;/groupId&gt;
&lt;artifactId&gt;hibernate-annotations&lt;/artifactId&gt;
&lt;version&gt;3.4.0.GA&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.hibernate&lt;/groupId&gt;
&lt;artifactId&gt;hibernate-entitymanager&lt;/artifactId&gt;
&lt;version&gt;3.4.0.GA&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.slf4j&lt;/groupId&gt;
&lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;
&lt;version&gt;1.5.2&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;hsqldb&lt;/groupId&gt;
&lt;artifactId&gt;hsqldb&lt;/artifactId&gt;
&lt;version&gt;1.8.0.7&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;&lt;build&gt;
&lt;plugins&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
&lt;configuration&gt;
&lt;source&gt;1.5&lt;/source&gt;
&lt;target&gt;1.5&lt;/target&gt;
&lt;/configuration&gt;
&lt;/plugin&gt;
&lt;plugin&gt;
&lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;
&lt;artifactId&gt;exec-maven-plugin&lt;/artifactId&gt;
&lt;version&gt;1.1.1&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;phase&gt;pre-site&lt;/phase&gt;
&lt;goals&gt;
&lt;goal&gt;exec&lt;/goal&gt;
&lt;/goals&gt;
&lt;/execution&gt;
&lt;/executions&gt;
&lt;configuration&gt;
&lt;executable&gt;java&lt;/executable&gt;
&lt;arguments&gt;
&lt;argument&gt;-classpath&lt;/argument&gt;
&lt;classpath/&gt;
&lt;argument&gt;com.ebay.HibernateDemo&lt;/argument&gt;
&lt;/arguments&gt;
&lt;/configuration&gt;
&lt;/plugin&gt;
&lt;/plugins&gt;
&lt;/build&gt;
&lt;/project&gt;</description> <content:encoded><![CDATA[<p>Here is the POM that Nambi provided:</p><p>&lt;project&gt;<br
/> &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;<br
/> &lt;groupId&gt;net.sf.emarket&lt;/groupId&gt;<br
/> &lt;artifactId&gt;hibernate-example&lt;/artifactId&gt;<br
/> &lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;</p><p> &lt;dependencies&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;javax.annotation&lt;/groupId&gt;<br
/> &lt;artifactId&gt;jsr250-api&lt;/artifactId&gt;<br
/> &lt;version&gt;1.0&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;javax.transaction&lt;/groupId&gt;<br
/> &lt;artifactId&gt;jta&lt;/artifactId&gt;<br
/> &lt;version&gt;1.1&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;org.hibernate&lt;/groupId&gt;<br
/> &lt;artifactId&gt;hibernate-core&lt;/artifactId&gt;<br
/> &lt;version&gt;3.3.1.GA&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;org.hibernate&lt;/groupId&gt;<br
/> &lt;artifactId&gt;hibernate-annotations&lt;/artifactId&gt;<br
/> &lt;version&gt;3.4.0.GA&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;org.hibernate&lt;/groupId&gt;<br
/> &lt;artifactId&gt;hibernate-entitymanager&lt;/artifactId&gt;<br
/> &lt;version&gt;3.4.0.GA&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;org.slf4j&lt;/groupId&gt;<br
/> &lt;artifactId&gt;slf4j-jdk14&lt;/artifactId&gt;<br
/> &lt;version&gt;1.5.2&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;dependency&gt;<br
/> &lt;groupId&gt;hsqldb&lt;/groupId&gt;<br
/> &lt;artifactId&gt;hsqldb&lt;/artifactId&gt;<br
/> &lt;version&gt;1.8.0.7&lt;/version&gt;<br
/> &lt;/dependency&gt;<br
/> &lt;/dependencies&gt;</p><p> &lt;build&gt;<br
/> &lt;plugins&gt;<br
/> &lt;plugin&gt;<br
/> &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br
/> &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;<br
/> &lt;configuration&gt;<br
/> &lt;source&gt;1.5&lt;/source&gt;<br
/> &lt;target&gt;1.5&lt;/target&gt;<br
/> &lt;/configuration&gt;<br
/> &lt;/plugin&gt;<br
/> &lt;plugin&gt;<br
/> &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;<br
/> &lt;artifactId&gt;exec-maven-plugin&lt;/artifactId&gt;<br
/> &lt;version&gt;1.1.1&lt;/version&gt;<br
/> &lt;executions&gt;<br
/> &lt;execution&gt;<br
/> &lt;phase&gt;pre-site&lt;/phase&gt;<br
/> &lt;goals&gt;<br
/> &lt;goal&gt;exec&lt;/goal&gt;<br
/> &lt;/goals&gt;<br
/> &lt;/execution&gt;<br
/> &lt;/executions&gt;<br
/> &lt;configuration&gt;<br
/> &lt;executable&gt;java&lt;/executable&gt;<br
/> &lt;arguments&gt;<br
/> &lt;argument&gt;-classpath&lt;/argument&gt;<br
/> &lt;classpath/&gt;<br
/> &lt;argument&gt;com.ebay.HibernateDemo&lt;/argument&gt;<br
/> &lt;/arguments&gt;<br
/> &lt;/configuration&gt;<br
/> &lt;/plugin&gt;<br
/> &lt;/plugins&gt;<br
/> &lt;/build&gt;<br
/> &lt;/project&gt;</p> ]]></content:encoded> </item> <item><title>By: nambi</title><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/comment-page-1/#comment-256</link> <dc:creator>nambi</dc:creator> <pubDate>Wed, 08 Apr 2009 19:19:26 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=5#comment-256</guid> <description>Thanks for the tutorial.It would have very helpful, if you have provided a maven pom.xml, instead of the jar filesSo, it took me a while to figure out the correct dependencies to make hibernate work.If you want to post it, I can pass you the pom.xml
Thanks
Nambi</description> <content:encoded><![CDATA[<p>Thanks for the tutorial.</p><p>It would have very helpful, if you have provided a maven pom.xml, instead of the jar files</p><p>So, it took me a while to figure out the correct dependencies to make hibernate work.</p><p>If you want to post it, I can pass you the pom.xml<br
/> Thanks<br
/> Nambi</p> ]]></content:encoded> </item> <item><title>By: Jerin Mathew</title><link>http://ocpsoft.com/java/getting-started-quickly-with-hibernate-annotations/comment-page-1/#comment-177</link> <dc:creator>Jerin Mathew</dc:creator> <pubDate>Tue, 03 Feb 2009 05:56:25 +0000</pubDate> <guid
isPermaLink="false">http://ocpsoft.com/?p=5#comment-177</guid> <description>hi, thank you for the code. But while im executing this code in the NetBeans, some exception occurs. the exception is &quot; Initial SessionFactory creation failed.java.lang.NoSuchMethodError: org.slf4j.Logger.trace(Ljava/lang/String;)V&quot;. what i have to do clear this exception. i imported the class &quot;org.slf4j.Logger&quot; and it shows unused import. will you help me to find out and clear the bug?</description> <content:encoded><![CDATA[<p>hi, thank you for the code. But while im executing this code in the NetBeans, some exception occurs. the exception is &#8221; Initial SessionFactory creation failed.java.lang.NoSuchMethodError: org.slf4j.Logger.trace(Ljava/lang/String;)V&#8221;. what i have to do clear this exception. i imported the class &#8220;org.slf4j.Logger&#8221; and it shows unused import. will you help me to find out and clear the bug?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: apache2-blow.brewers.dreamhost.com @ 2010-03-10 23:29:22 by W3 Total Cache -->