<?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 for All systems GO</title>
	<atom:link href="http://gokhan.ozar.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gokhan.ozar.net</link>
	<description>a few things Gökhan Ozar does...</description>
	<lastBuildDate>Sat, 18 Feb 2012 13:30:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part III by Gökhan Ozar</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-3/#comment-153</link>
		<dc:creator>Gökhan Ozar</dc:creator>
		<pubDate>Sat, 18 Feb 2012 13:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=162#comment-153</guid>
		<description>In this setting, you need to put mysql-connector-java-5.1.13-bin.jar into the lib folder of your Tomcat/lib directory. That should solve the problem.</description>
		<content:encoded><![CDATA[<p>In this setting, you need to put mysql-connector-java-5.1.13-bin.jar into the lib folder of your Tomcat/lib directory. That should solve the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part III by siobhan</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-3/#comment-152</link>
		<dc:creator>siobhan</dc:creator>
		<pubDate>Sat, 18 Feb 2012 12:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=162#comment-152</guid>
		<description>I did exactly what you said here, but I&#039;m getting &lt;pre&gt;org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class &#039;com.mysql.jdbc.Driver&#039;&lt;/pre&gt; although it&#039;s among the library jars in WEB-INF/lib.

Can you help?</description>
		<content:encoded><![CDATA[<p>I did exactly what you said here, but I&#8217;m getting
<pre>org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class &#039;com.mysql.jdbc.Driver&#039;</pre>
<p> although it&#8217;s among the library jars in WEB-INF/lib.</p>
<p>Can you help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Derived Properties &#8211; @Formula Annotation by cj</title>
		<link>http://gokhan.ozar.net/hibernate-derived-properties-formula-annotation/#comment-151</link>
		<dc:creator>cj</dc:creator>
		<pubDate>Thu, 16 Feb 2012 09:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=15#comment-151</guid>
		<description>it would be great to have an equaivalent of @Formula for EclipseLink</description>
		<content:encoded><![CDATA[<p>it would be great to have an equaivalent of @Formula for EclipseLink</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Derived Properties &#8211; @Formula Annotation by Gökhan Ozar</title>
		<link>http://gokhan.ozar.net/hibernate-derived-properties-formula-annotation/#comment-150</link>
		<dc:creator>Gökhan Ozar</dc:creator>
		<pubDate>Thu, 16 Feb 2012 07:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=15#comment-150</guid>
		<description>For example for an entity POJO called Deposit.java :
&lt;pre class=&quot;brush: java; gutter: false&quot;&gt;
public class Deposit implements Serializable {

    private Long depositId;
    private Client client;
    private BigDecimal balance;
    private BigDecimal depositValue;

    public Deposit() {
    }

    public BigDecimal getBalance() {
        return balance;
    }

    public void setBalance(BigDecimal balance) {
        this.balance = balance;
    }

    public Client getClient() {
        return client;
    }

    public void setClient(Client client) {
        this.client = client;
    }

    public Long getDepositId() {
        return depositId;
    }

    public void setDepositId(Long depositId) {
        this.depositId = depositId;
    }
}
&lt;/pre&gt;
&lt;pre class=&quot;brush: xml; gutter: false&quot;&gt;
&lt;hibernate-mapping&gt;
    &lt;class name=&quot;net.ozar.demoapp.entity.Deposit&quot; table=&quot;DEPOSIT&quot;&gt;
        &lt;id name=&quot;depositId&quot; type=&quot;java.lang.Long&quot;&gt;
            &lt;column name=&quot;DEPOSIT_ID&quot; /&gt;
            &lt;generator class=&quot;identity&quot; /&gt;
        &lt;/id&gt;
        &lt;many-to-one name=&quot;client&quot; class=&quot;net.ozar.demoapp.entity.Client&quot; lazy=&quot;false&quot; fetch=&quot;select&quot;&gt;
            &lt;column name=&quot;CLIENT_ID&quot; /&gt;
        &lt;/many-to-one&gt;
       
        &lt;property name=&quot;balance&quot; type=&quot;big_decimal&quot;&gt;
            &lt;column name=&quot;BALANCE&quot; precision=&quot;20&quot; scale=&quot;2&quot; /&gt;
        &lt;/property&gt;
        
        &lt;property name=&quot;depositValue&quot; 
          formula=&quot;( SELECT IFNULL((SELECT d.NIGHTLY_RATE FROM DEPOSIT d WHERE d.ACCOUNT_ID = ACCOUNT_ID),1)*NOMINAL_RATE)&quot; /&gt;
        
    &lt;/class&gt;
&lt;/hibernate-mapping&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>For example for an entity POJO called Deposit.java :</p>
<pre class="brush: java; gutter: false">
public class Deposit implements Serializable {

    private Long depositId;
    private Client client;
    private BigDecimal balance;
    private BigDecimal depositValue;

    public Deposit() {
    }

    public BigDecimal getBalance() {
        return balance;
    }

    public void setBalance(BigDecimal balance) {
        this.balance = balance;
    }

    public Client getClient() {
        return client;
    }

    public void setClient(Client client) {
        this.client = client;
    }

    public Long getDepositId() {
        return depositId;
    }

    public void setDepositId(Long depositId) {
        this.depositId = depositId;
    }
}
</pre>
<pre class="brush: xml; gutter: false">
&lt;hibernate-mapping&gt;
    &lt;class name=&quot;net.ozar.demoapp.entity.Deposit&quot; table=&quot;DEPOSIT&quot;&gt;
        &lt;id name=&quot;depositId&quot; type=&quot;java.lang.Long&quot;&gt;
            &lt;column name=&quot;DEPOSIT_ID&quot; /&gt;
            &lt;generator class=&quot;identity&quot; /&gt;
        &lt;/id&gt;
        &lt;many-to-one name=&quot;client&quot; class=&quot;net.ozar.demoapp.entity.Client&quot; lazy=&quot;false&quot; fetch=&quot;select&quot;&gt;
            &lt;column name=&quot;CLIENT_ID&quot; /&gt;
        &lt;/many-to-one&gt;

        &lt;property name=&quot;balance&quot; type=&quot;big_decimal&quot;&gt;
            &lt;column name=&quot;BALANCE&quot; precision=&quot;20&quot; scale=&quot;2&quot; /&gt;
        &lt;/property&gt;

        &lt;property name=&quot;depositValue&quot;
          formula=&quot;( SELECT IFNULL((SELECT d.NIGHTLY_RATE FROM DEPOSIT d WHERE d.ACCOUNT_ID = ACCOUNT_ID),1)*NOMINAL_RATE)&quot; /&gt;

    &lt;/class&gt;
&lt;/hibernate-mapping&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate Derived Properties &#8211; @Formula Annotation by klark</title>
		<link>http://gokhan.ozar.net/hibernate-derived-properties-formula-annotation/#comment-149</link>
		<dc:creator>klark</dc:creator>
		<pubDate>Wed, 15 Feb 2012 14:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=15#comment-149</guid>
		<description>How would I make a formula column definition in the hbm.xml file?</description>
		<content:encoded><![CDATA[<p>How would I make a formula column definition in the hbm.xml file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part IV by ipqs</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-4/#comment-147</link>
		<dc:creator>ipqs</dc:creator>
		<pubDate>Mon, 30 Jan 2012 15:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=198#comment-147</guid>
		<description>Any solution for the duplicate Id for a component selectParent error caused by seam-gen 2.2? While I admit it&#039;s better to select related objects via the h:selectOneMenu, but there are cases where I need multiple tabs in the rich:tabPanel to manage different related collection objects.</description>
		<content:encoded><![CDATA[<p>Any solution for the duplicate Id for a component selectParent error caused by seam-gen 2.2? While I admit it&#8217;s better to select related objects via the h:selectOneMenu, but there are cases where I need multiple tabs in the rich:tabPanel to manage different related collection objects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Database 10g XE Installation and Configuration by ipqs</title>
		<link>http://gokhan.ozar.net/oracle10g-xe/#comment-146</link>
		<dc:creator>ipqs</dc:creator>
		<pubDate>Mon, 30 Jan 2012 15:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=1#comment-146</guid>
		<description>Do you have instructions for Oracle XE 11g, too?</description>
		<content:encoded><![CDATA[<p>Do you have instructions for Oracle XE 11g, too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part IV by Gökhan Ozar</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-4/#comment-145</link>
		<dc:creator>Gökhan Ozar</dc:creator>
		<pubDate>Mon, 30 Jan 2012 12:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=198#comment-145</guid>
		<description>why, thank you. :)</description>
		<content:encoded><![CDATA[<p>why, thank you. <img src='http://gokhan.ozar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part IV by gaye</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-4/#comment-144</link>
		<dc:creator>gaye</dc:creator>
		<pubDate>Mon, 30 Jan 2012 01:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=198#comment-144</guid>
		<description>Hey, this is probably the best free Seam tutorial ever. Keep up the great work!</description>
		<content:encoded><![CDATA[<p>Hey, this is probably the best free Seam tutorial ever. Keep up the great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part IV by Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part III &#124; All systems GO</title>
		<link>http://gokhan.ozar.net/blog-with-jboss-seam-on-tomcat-in-the-cloud-part-4/#comment-143</link>
		<dc:creator>Create a Blog with JBoss Seam, Hibernate JPA and JSF then Deploy it to Tomcat in the Cloud &#8211; Part III &#124; All systems GO</dc:creator>
		<pubDate>Mon, 30 Jan 2012 01:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://gokhan.ozar.net/?p=198#comment-143</guid>
		<description>[...] Post navigation &#8592; Previous Next &#8594; [...]</description>
		<content:encoded><![CDATA[<p>[...] Post navigation &larr; Previous Next &rarr; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

