<?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>Java Plex by Java Developers &#187; Programming</title>
	<atom:link href="http://www.javaplex.com/blog/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javaplex.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 20:37:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Simple CSV Generator</title>
		<link>http://www.javaplex.com/blog/simple-csv-generator/</link>
		<comments>http://www.javaplex.com/blog/simple-csv-generator/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 20:37:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[csv]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=619</guid>
		<description><![CDATA[I want to share a very simple example which can be used to generate CSV in Java. The code is self&#160;explanatory and easy to understand.]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/simple-csv-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Sorting Objects at Runtime using Comparator</title>
		<link>http://www.javaplex.com/blog/java-sorting-objects-at-runtime-using-comparator/</link>
		<comments>http://www.javaplex.com/blog/java-sorting-objects-at-runtime-using-comparator/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 06:11:18 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=612</guid>
		<description><![CDATA[Java gives very convenient way for sorting collection types by Collections.sort method. It have two flavors Collections.sort( collection, new Comparator &#60; T&#62;( )){} This is runtime sorting, &#38; you will create an anonymous class implementation and will override Comparator&#8217;s compare method and return value -1, 0 , 1. Collections.sort( collection) You provide collection whose objects implemented Comparable or Comparator interface &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/java-sorting-objects-at-runtime-using-comparator/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/java-sorting-objects-at-runtime-using-comparator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate Enum Datatype Mapping</title>
		<link>http://www.javaplex.com/blog/hibernate-enum-datatype-mapping/</link>
		<comments>http://www.javaplex.com/blog/hibernate-enum-datatype-mapping/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 05:14:30 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[enum]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jpa]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=608</guid>
		<description><![CDATA[If you want to map a enum in JPA/Hibernate POJO class, so that only specific values can be saved for underlying database column, it is possible now very easily. The sample POJO File is given below, have an idea. @Enumerated( javax.persistence.EnumType.STRING ) tells what values you want into database from provided enum type, &#38; hibernate will &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/hibernate-enum-datatype-mapping/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/hibernate-enum-datatype-mapping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate persist() vs. save()</title>
		<link>http://www.javaplex.com/blog/hibernate-persist-vs-save/</link>
		<comments>http://www.javaplex.com/blog/hibernate-persist-vs-save/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 07:50:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=606</guid>
		<description><![CDATA[In case anybody finds this thread&#8230; For persist() The semantics of this method are defined by JSR-220. persist() is well defined. It makes a transient instance persistent. However, it doesn&#8217;t guarantee that the identifier value will be assigned to the persistent instance immediately, the assignment might happen at flush time. The spec doesn&#8217;t say that, &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/hibernate-persist-vs-save/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/hibernate-persist-vs-save/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For JSF 2.0, How to Enable EL 2.2 on Tomcat 6</title>
		<link>http://www.javaplex.com/blog/for-jsf-2-how-to-enable-el-2-2-on-tomcat-6/</link>
		<comments>http://www.javaplex.com/blog/for-jsf-2-how-to-enable-el-2-2-on-tomcat-6/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 10:33:03 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[el]]></category>
		<category><![CDATA[expression language]]></category>
		<category><![CDATA[java server faces]]></category>
		<category><![CDATA[myfaces]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=558</guid>
		<description><![CDATA[How to Enable EL 2 for Java Server Faces 2.x on server running older EL version EXCEPTION: com.sun.faces.config.ConfigurationException: It appears the JSP version of the container is older than 2.1 and unable to locate the EL RI expression factory, com.sun.el.ExpressionFactoryImpl.  If not using JSP or the EL RI, make sure the context initialization parameter, com.sun.faces.expressionFactory, &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/for-jsf-2-how-to-enable-el-2-2-on-tomcat-6/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/for-jsf-2-how-to-enable-el-2-2-on-tomcat-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generic DAO with Hibernate and Spring</title>
		<link>http://www.javaplex.com/blog/generic-dao-with-hibernate-and-spring/</link>
		<comments>http://www.javaplex.com/blog/generic-dao-with-hibernate-and-spring/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 12:29:55 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[data access object]]></category>
		<category><![CDATA[generic dao]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=580</guid>
		<description><![CDATA[If you are using Hibernate with Spring, then you will be dealing with huge set of DAOs. In such case best way to minimize the DAO work with Generic DAO patter, which encapsulate CRUD + basic finder method and then write only very required methods. I&#8217;m inspired by the IBM Generic DAO pattern and rewrite &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/generic-dao-with-hibernate-and-spring/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/generic-dao-with-hibernate-and-spring/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to achieve Database Auto ID Generation Portability in Hibernate</title>
		<link>http://www.javaplex.com/blog/how-to-achieve-database-auto-id-generation-portability-in-hibernate/</link>
		<comments>http://www.javaplex.com/blog/how-to-achieve-database-auto-id-generation-portability-in-hibernate/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 10:25:03 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SequenceStyleGenerator]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=566</guid>
		<description><![CDATA[Hibernate meant to be Database independent ORM solution, but while migrating to another database vendor some key issues arrives. One of them is Auto ID generation of underlying database. MySQL, Oracle &#38; MS SQL Server all uses different techniques to generate auto ID for primary keys. So, when we start migrating we face lot of &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/how-to-achieve-database-auto-id-generation-portability-in-hibernate/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/how-to-achieve-database-auto-id-generation-portability-in-hibernate/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MyEclipse Customizing Hibernate Reverse Engineering</title>
		<link>http://www.javaplex.com/blog/myeclipse-customizing-hibernate-reverse-engineering/</link>
		<comments>http://www.javaplex.com/blog/myeclipse-customizing-hibernate-reverse-engineering/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 05:27:27 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[myeclipse]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=562</guid>
		<description><![CDATA[Most of the time you want to perform hibernate reverse engineering to generate Pojos from underlying database using hibernate-tools or directly from My Eclipse which also uses hibernate-tools. But some times we want to control the mechanism by which hibernate  tools generate pojos, like we want to have prefix or suffix in our class name &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/myeclipse-customizing-hibernate-reverse-engineering/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/myeclipse-customizing-hibernate-reverse-engineering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Myfaces 2  Exception: could not find Factory: javax.faces.application.ApplicationFactory</title>
		<link>http://www.javaplex.com/blog/myfaces-2-exception-could-not-find-factory-javax-faces-application-applicationfactory/</link>
		<comments>http://www.javaplex.com/blog/myfaces-2-exception-could-not-find-factory-javax-faces-application-applicationfactory/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 06:24:34 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[myfaces]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=554</guid>
		<description><![CDATA[Myfaces Exception: could not find Factory: javax.faces.application.ApplicationFactory This exception comes when you have Mojara jars on your server/tomcat etc and your are shipping MyFaces with your application, this will eventually comes out. So try to delete the Mojara from class path. Another problem while developing with MyEclipse, if you create a web project and set &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/myfaces-2-exception-could-not-find-factory-javax-faces-application-applicationfactory/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/myfaces-2-exception-could-not-find-factory-javax-faces-application-applicationfactory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Error: A cycle was detected in the build path</title>
		<link>http://www.javaplex.com/blog/eclipse-error-cycle-was-detected-the-build-path/</link>
		<comments>http://www.javaplex.com/blog/eclipse-error-cycle-was-detected-the-build-path/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 06:25:15 +0000</pubDate>
		<dc:creator>Faisal Basra</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.javaplex.com/blog/?p=550</guid>
		<description><![CDATA[We were just facing very tedious error  by eclipse &#8220;A cycle was detected in the build path&#8221; and it take some time what the problem was. Actually we You can instruct the Eclipse to ignore this error. Follow the instructions at. Preferences &#62; Java &#62; Compiler &#62; Building &#62; Build path problems &#62; Circular dependencies &#8230; </p><p><a class="more-link block-button" href="http://www.javaplex.com/blog/eclipse-error-cycle-was-detected-the-build-path/">Continue reading &#187;</a>]]></description>
		<wfw:commentRss>http://www.javaplex.com/blog/eclipse-error-cycle-was-detected-the-build-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.javaplex.com @ 2012-02-10 02:32:10 -->
