<?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: org.hibernate.HibernateException: identifier of an instance of members.Appointment was altered from 8 to 8</title>
	<atom:link href="http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/</link>
	<description>Fix your error</description>
	<lastBuildDate>Wed, 11 Jan 2012 15:12:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>By: Rohan Karwa</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-24107</link>
		<dc:creator>Rohan Karwa</dc:creator>
		<pubDate>Sat, 11 Dec 2010 21:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-24107</guid>
		<description>@Arjun and Joshua:

Thanks guys... Changing from Long to Int worked for me too.. :)</description>
		<content:encoded><![CDATA[<p>@Arjun and Joshua:</p>
<p>Thanks guys&#8230; Changing from Long to Int worked for me too.. <img src='http://www.theerrormessage.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arjun</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-24085</link>
		<dc:creator>Arjun</dc:creator>
		<pubDate>Tue, 10 Aug 2010 06:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-24085</guid>
		<description>same error. I also changed the long datatype to int. That solved the problem.
But can&#039;t we set long datatype??</description>
		<content:encoded><![CDATA[<p>same error. I also changed the long datatype to int. That solved the problem.<br />
But can&#8217;t we set long datatype??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Immanuel. N</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-1003</link>
		<dc:creator>Joshua Immanuel. N</dc:creator>
		<pubDate>Thu, 02 Apr 2009 05:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-1003</guid>
		<description>I got the same error. My mistake is the datatype of the id property and it&#039;s getter setter methods.

private long id;
public long getId() {
      return id;
}
public void setId(long l) {
	id = l;
}

I changed long to int and it worked.</description>
		<content:encoded><![CDATA[<p>I got the same error. My mistake is the datatype of the id property and it&#8217;s getter setter methods.</p>
<p>private long id;<br />
public long getId() {<br />
      return id;<br />
}<br />
public void setId(long l) {<br />
	id = l;<br />
}</p>
<p>I changed long to int and it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melissa</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-444</link>
		<dc:creator>Melissa</dc:creator>
		<pubDate>Sun, 14 Dec 2008 18:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-444</guid>
		<description>Hello!
I&#039;m having the same error to. My mistake was that my getter method of th id property was wrong:

getHashCode wrong:
public int getHashCode(){
  return this.hashCode();
}

getHashCode right:
public int getHashCode(){
  return this.hashCode;
}

I wish it help you. Bye bye!!

(Excuse if I write something wrong, my english isn&#039;t right).</description>
		<content:encoded><![CDATA[<p>Hello!<br />
I&#8217;m having the same error to. My mistake was that my getter method of th id property was wrong:</p>
<p>getHashCode wrong:<br />
public int getHashCode(){<br />
  return this.hashCode();<br />
}</p>
<p>getHashCode right:<br />
public int getHashCode(){<br />
  return this.hashCode;<br />
}</p>
<p>I wish it help you. Bye bye!!</p>
<p>(Excuse if I write something wrong, my english isn&#8217;t right).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manu</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-426</link>
		<dc:creator>Manu</dc:creator>
		<pubDate>Mon, 03 Nov 2008 23:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-426</guid>
		<description>I am facing the same problem.. Did any body found the solution to this porblem? 
Please help.</description>
		<content:encoded><![CDATA[<p>I am facing the same problem.. Did any body found the solution to this porblem?<br />
Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mimi</title>
		<link>http://www.theerrormessage.com/2007/08/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/comment-page-1/#comment-166</link>
		<dc:creator>Mimi</dc:creator>
		<pubDate>Fri, 28 Sep 2007 02:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.theerrormessage.com/2007/08/06/orghibernatehibernateexception-identifier-of-an-instance-of-membersappointment-was-altered-from-8-to-8/#comment-166</guid>
		<description>I&#039;m having the same error message. But the mistake I&#039;ve made is different. I missed the getter method of the id property. As soon as I added the method, this error message don&#039;t appear again.

Thanks for the post. It gave me idea that the error message is concerned with the class mapped to the database.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same error message. But the mistake I&#8217;ve made is different. I missed the getter method of the id property. As soon as I added the method, this error message don&#8217;t appear again.</p>
<p>Thanks for the post. It gave me idea that the error message is concerned with the class mapped to the database.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

