<?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 FactoryPattern.com</title>
	<atom:link href="http://www.factorypattern.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.factorypattern.com</link>
	<description>Just another Object Oriented Weblog</description>
	<lastBuildDate>Sat, 07 Jan 2012 02:36:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on How To Use JDBC addBatch Method with MySQL for Improved Performance by Vivek</title>
		<link>http://www.factorypattern.com/how-to-use-jdbc-addbatch-method-with-mysql-for-improved-performance/comment-page-1/#comment-408</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Sat, 07 Jan 2012 02:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=119#comment-408</guid>
		<description>Thank you very much for this article. It was very helpful.</description>
		<content:encoded><![CDATA[<p>Thank you very much for this article. It was very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Guice Tutorial by Rajesh Kanna</title>
		<link>http://www.factorypattern.com/google-guice-tutorial/comment-page-1/#comment-407</link>
		<dc:creator>Rajesh Kanna</dc:creator>
		<pubDate>Wed, 21 Dec 2011 21:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/google-guice-tutorial/#comment-407</guid>
		<description>Very useful... Thanks :-)</description>
		<content:encoded><![CDATA[<p>Very useful&#8230; Thanks <img src='http://www.factorypattern.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB Castor Comparison by Amin</title>
		<link>http://www.factorypattern.com/jaxb-castor-comparison/comment-page-1/#comment-397</link>
		<dc:creator>Amin</dc:creator>
		<pubDate>Mon, 28 Nov 2011 11:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=4#comment-397</guid>
		<description>Another case is : when u have a huge code base already in production and all model classes are already existing , same object may be going to JMS ,  Database or some analytic&#039;s. etc 

now for XML 
we would not use generated classes - means manually writing annotations to hundred of model classes . which are also used by other layers they have to do testing as well .</description>
		<content:encoded><![CDATA[<p>Another case is : when u have a huge code base already in production and all model classes are already existing , same object may be going to JMS ,  Database or some analytic&#8217;s. etc </p>
<p>now for XML<br />
we would not use generated classes &#8211; means manually writing annotations to hundred of model classes . which are also used by other layers they have to do testing as well .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB Castor Comparison by Amin</title>
		<link>http://www.factorypattern.com/jaxb-castor-comparison/comment-page-1/#comment-396</link>
		<dc:creator>Amin</dc:creator>
		<pubDate>Mon, 28 Nov 2011 10:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=4#comment-396</guid>
		<description>&quot;For Castor you need to manage the XML file containing the bindings, to configure the application to read it from some where, … etc. On the other side fot JAXB you have everything in the generated class. JAXB seems better here.&quot;


I have used castor on many projects and from what i see is this is Actually an issue with JAXB not any feature.. 

reason is : 1 we are forced to have annotated classes and it relies on generated classes , from maintenance perspective , its much better to have a binding /mapping file since it is one place where u have all your mappings , vs its spread through out your model classes and n number of classes have to be changed - which also means more testing expense . 

In case of Complex object structures with inheritance  -- to understand how object is mapped to xml i would have to open objects and read annottaions and assuume the xml and which is very impractical 

if xml structure changes we can manage it in most cases just by modifying mapping xml . 

It also seems to be dependent on schema which is a good feature but shud be an option not mandatory</description>
		<content:encoded><![CDATA[<p>&#8220;For Castor you need to manage the XML file containing the bindings, to configure the application to read it from some where, … etc. On the other side fot JAXB you have everything in the generated class. JAXB seems better here.&#8221;</p>
<p>I have used castor on many projects and from what i see is this is Actually an issue with JAXB not any feature.. </p>
<p>reason is : 1 we are forced to have annotated classes and it relies on generated classes , from maintenance perspective , its much better to have a binding /mapping file since it is one place where u have all your mappings , vs its spread through out your model classes and n number of classes have to be changed &#8211; which also means more testing expense . </p>
<p>In case of Complex object structures with inheritance  &#8212; to understand how object is mapped to xml i would have to open objects and read annottaions and assuume the xml and which is very impractical </p>
<p>if xml structure changes we can manage it in most cases just by modifying mapping xml . </p>
<p>It also seems to be dependent on schema which is a good feature but shud be an option not mandatory</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB Castor Comparison by Ziletka</title>
		<link>http://www.factorypattern.com/jaxb-castor-comparison/comment-page-1/#comment-387</link>
		<dc:creator>Ziletka</dc:creator>
		<pubDate>Tue, 26 Jul 2011 18:43:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=4#comment-387</guid>
		<description>Hi,
thanks for your post.

I have additional reason for Castor: When you use a lot of similar web services in your application you can map different XSD files (with the same definition) to one object.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks for your post.</p>
<p>I have additional reason for Castor: When you use a lot of similar web services in your application you can map different XSD files (with the same definition) to one object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JAXB Castor Comparison by aforCastor</title>
		<link>http://www.factorypattern.com/jaxb-castor-comparison/comment-page-1/#comment-385</link>
		<dc:creator>aforCastor</dc:creator>
		<pubDate>Fri, 10 Jun 2011 13:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=4#comment-385</guid>
		<description>I tried castor with objects and was able to get xmls although mapping didnot work perfectly.
jaxb w&#039;d be pain.
Jaxb-2 is using annotations and is dynamic like castor(probaly using reflection like castor now)

but castor had all that long time back. :)

castor commiters, pls. add annotations support to kep jaxB folks quiet.</description>
		<content:encoded><![CDATA[<p>I tried castor with objects and was able to get xmls although mapping didnot work perfectly.<br />
jaxb w&#8217;d be pain.<br />
Jaxb-2 is using annotations and is dynamic like castor(probaly using reflection like castor now)</p>
<p>but castor had all that long time back. <img src='http://www.factorypattern.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>castor commiters, pls. add annotations support to kep jaxB folks quiet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Guice Tutorial by Rama</title>
		<link>http://www.factorypattern.com/google-guice-tutorial/comment-page-1/#comment-374</link>
		<dc:creator>Rama</dc:creator>
		<pubDate>Fri, 11 Mar 2011 00:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/google-guice-tutorial/#comment-374</guid>
		<description>Nice. This is really useful tutorial for understanding the basics of google guice dependency injection. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Nice. This is really useful tutorial for understanding the basics of google guice dependency injection. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Date Time Manipulation In Java by Ashish Ranjan</title>
		<link>http://www.factorypattern.com/date-time-manipulation-in-java/comment-page-1/#comment-371</link>
		<dc:creator>Ashish Ranjan</dc:creator>
		<pubDate>Sat, 26 Feb 2011 16:17:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/?p=143#comment-371</guid>
		<description>good one :-)
but i think the title should be changed from &quot;data ... &quot; to &quot;date...&quot;</description>
		<content:encoded><![CDATA[<p>good one <img src='http://www.factorypattern.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
but i think the title should be changed from &#8220;data &#8230; &#8221; to &#8220;date&#8230;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Storing parameters in web.xml: context-param &amp; init-param by Rajan SSG</title>
		<link>http://www.factorypattern.com/storing-parameters-in-webxml-context-param-init-param/comment-page-1/#comment-359</link>
		<dc:creator>Rajan SSG</dc:creator>
		<pubDate>Thu, 25 Nov 2010 06:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/storing-parameters-in-webxml-context-param-init-param/#comment-359</guid>
		<description>Very well explanation. Easy to understand the concept. Thanks</description>
		<content:encoded><![CDATA[<p>Very well explanation. Easy to understand the concept. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Guice Tutorial by Luis</title>
		<link>http://www.factorypattern.com/google-guice-tutorial/comment-page-1/#comment-358</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Tue, 09 Nov 2010 19:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.factorypattern.com/google-guice-tutorial/#comment-358</guid>
		<description>O, but I still don&#039;t get it. I&#039;ve followed this example, implemented and executed it. OK, it&#039;s fine that we can put things differently, but don&#039;t really get the advantage. Actually, it&#039;s kind of weird for debugging, isn&#039;t it?

And it&#039;s code-invasive. So I&#039;m trying to find an example where I could really see the difference. I guess when we&#039;re using an interface, it&#039;s because in few cases we&#039;ll use an implementation and in another case we&#039;ll use another one, but how shold this be working? I mean, what advanatage I have?

Apart from that, I have to say you put the easiest post to follow this. Congratulations and thank you.</description>
		<content:encoded><![CDATA[<p>O, but I still don&#8217;t get it. I&#8217;ve followed this example, implemented and executed it. OK, it&#8217;s fine that we can put things differently, but don&#8217;t really get the advantage. Actually, it&#8217;s kind of weird for debugging, isn&#8217;t it?</p>
<p>And it&#8217;s code-invasive. So I&#8217;m trying to find an example where I could really see the difference. I guess when we&#8217;re using an interface, it&#8217;s because in few cases we&#8217;ll use an implementation and in another case we&#8217;ll use another one, but how shold this be working? I mean, what advanatage I have?</p>
<p>Apart from that, I have to say you put the easiest post to follow this. Congratulations and thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

