<?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 Life in the startup lane</title>
	<atom:link href="http://tomchikoore.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomchikoore.com</link>
	<description></description>
	<lastBuildDate>Mon, 12 Sep 2011 12:07:13 +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 Tutorial for using Spring Roo with an existing database by Peter G.</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-935</link>
		<dc:creator>Peter G.</dc:creator>
		<pubDate>Mon, 12 Sep 2011 12:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-935</guid>
		<description>Wow! Thank you for sharing, This helped me a lot on Spring Roo, I never thought that this is possible :)</description>
		<content:encoded><![CDATA[<p>Wow! Thank you for sharing, This helped me a lot on Spring Roo, I never thought that this is possible <img src='http://tomchikoore.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It&#8217;s a &#8220;Service&#8221; stupid by Life in the startup lane &#187; SaaS Intro Presentation</title>
		<link>http://tomchikoore.com/2011/03/09/its-a-service-stupid/comment-page-1/#comment-923</link>
		<dc:creator>Life in the startup lane &#187; SaaS Intro Presentation</dc:creator>
		<pubDate>Fri, 26 Aug 2011 21:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=322#comment-923</guid>
		<description>[...] writing the &#8220;It’s a “Service” stupid&#8221; article, I have been asked to talk about SaaS to engineering teams at companies that are making the [...]</description>
		<content:encoded><![CDATA[<p>[...] writing the &#8220;It’s a “Service” stupid&#8221; article, I have been asked to talk about SaaS to engineering teams at companies that are making the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The death of the Rocky Mountain News, the rise of Filtrbox by Alexia Delgado</title>
		<link>http://tomchikoore.com/2009/03/24/the-death-of-the-rocky-mountain-news-the-rise-of-filtrbox/comment-page-1/#comment-909</link>
		<dc:creator>Alexia Delgado</dc:creator>
		<pubDate>Wed, 27 Jul 2011 12:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=92#comment-909</guid>
		<description>Neat post! an address to this story was provided by Christian Dillstrom,  you are doing a very good job as mobile &amp; social media marketing visionary is pointing towards you?</description>
		<content:encoded><![CDATA[<p>Neat post! an address to this story was provided by Christian Dillstrom,  you are doing a very good job as mobile &amp; social media marketing visionary is pointing towards you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by Dennis Gearon</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-906</link>
		<dc:creator>Dennis Gearon</dc:creator>
		<pubDate>Wed, 20 Jul 2011 04:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-906</guid>
		<description>I think the best method would be inheritance, or &#039;an element of&#039;. I.E. name your NEW table user_in_roo, and have a field in it that is &#039;id&#039;, or whatever the original field primary key was. That is, until Roo gets gets introspection working.

BTW, Java is a much better (in most ways) product line than PHP, more rigorous, and Roo is a much more powerful tool than many other similar tools (like Ruby on Rails and Symfony, CakePHP, et al). I&#039;m most familiar with Symfony, I&#039;ll admit.

From what I&#039;ve seen, Symfony/Doctrine always had problems with introspection on anthing but MySQL. It would work . . . on simple stuff. Personally, I expect Roo to do a better job, BUT, complex databases are hard to translate into ORMs. I think hooking into the existing database as I&#039;ve described might be better, and using Eclipse JPA (with what little I&#039;ve read about that).

Another solution is to build an equivalent Roo version, export your database, reimport it into the new design, using SQL and POJ, (Plain Old Java/PHP). Now that I think about it, that&#039;s what I did with my PHP project. It means, as usual in the database world, if you change your schema, be prepared to do a LOT of work.</description>
		<content:encoded><![CDATA[<p>I think the best method would be inheritance, or &#8216;an element of&#8217;. I.E. name your NEW table user_in_roo, and have a field in it that is &#8216;id&#8217;, or whatever the original field primary key was. That is, until Roo gets gets introspection working.</p>
<p>BTW, Java is a much better (in most ways) product line than PHP, more rigorous, and Roo is a much more powerful tool than many other similar tools (like Ruby on Rails and Symfony, CakePHP, et al). I&#8217;m most familiar with Symfony, I&#8217;ll admit.</p>
<p>From what I&#8217;ve seen, Symfony/Doctrine always had problems with introspection on anthing but MySQL. It would work . . . on simple stuff. Personally, I expect Roo to do a better job, BUT, complex databases are hard to translate into ORMs. I think hooking into the existing database as I&#8217;ve described might be better, and using Eclipse JPA (with what little I&#8217;ve read about that).</p>
<p>Another solution is to build an equivalent Roo version, export your database, reimport it into the new design, using SQL and POJ, (Plain Old Java/PHP). Now that I think about it, that&#8217;s what I did with my PHP project. It means, as usual in the database world, if you change your schema, be prepared to do a LOT of work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by BoB</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-838</link>
		<dc:creator>BoB</dc:creator>
		<pubDate>Sat, 19 Feb 2011 21:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-838</guid>
		<description>Hey.. Great job!!!!</description>
		<content:encoded><![CDATA[<p>Hey.. Great job!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by tomchikoore</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-831</link>
		<dc:creator>tomchikoore</dc:creator>
		<pubDate>Mon, 24 Jan 2011 15:06:04 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-831</guid>
		<description>I am not familiar with that error on GWT. I have not worked with the GWT web framework.</description>
		<content:encoded><![CDATA[<p>I am not familiar with that error on GWT. I have not worked with the GWT web framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by Alex McLintock</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-830</link>
		<dc:creator>Alex McLintock</dc:creator>
		<pubDate>Mon, 24 Jan 2011 12:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-830</guid>
		<description>Hi Tom, 

have you looked at this again? I ask because there are still problems with SpringRoo and version fields when reverse engineering. 

I can, for example, reverse engineer a database with SpringRoo, but it falls over when generating a GWT web framework saying that it *needs* a version field. 

This is a pain when I have an existing schema I can&#039;t easily change.</description>
		<content:encoded><![CDATA[<p>Hi Tom, </p>
<p>have you looked at this again? I ask because there are still problems with SpringRoo and version fields when reverse engineering. </p>
<p>I can, for example, reverse engineer a database with SpringRoo, but it falls over when generating a GWT web framework saying that it *needs* a version field. </p>
<p>This is a pain when I have an existing schema I can&#8217;t easily change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TouchTerm &#8211; The most useful iPhone app in my arsenal by Faustino Rakel</title>
		<link>http://tomchikoore.com/2009/03/31/touchterm-the-most-useful-iphone-app-in-my-arsenal/comment-page-1/#comment-823</link>
		<dc:creator>Faustino Rakel</dc:creator>
		<pubDate>Sat, 20 Nov 2010 21:28:35 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=104#comment-823</guid>
		<description>Thanks for a fantastic article and interesting comments. I found this put up although surfing the internet for Thanks for sharing this text.</description>
		<content:encoded><![CDATA[<p>Thanks for a fantastic article and interesting comments. I found this put up although surfing the internet for Thanks for sharing this text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by Spring ROO Addons: si tuviera tiempo&#8230; &#171; Java Mania</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-818</link>
		<dc:creator>Spring ROO Addons: si tuviera tiempo&#8230; &#171; Java Mania</dc:creator>
		<pubDate>Wed, 18 Aug 2010 19:10:05 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-818</guid>
		<description>[...] http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/" rel="nofollow">http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial for using Spring Roo with an existing database by epzee</title>
		<link>http://tomchikoore.com/2010/03/19/tutorial-for-using-spring-roo-with-an-existing-database/comment-page-1/#comment-816</link>
		<dc:creator>epzee</dc:creator>
		<pubDate>Wed, 11 Aug 2010 00:02:31 +0000</pubDate>
		<guid isPermaLink="false">http://tomchikoore.com/?p=214#comment-816</guid>
		<description>Great tip Tom! Step 5 also works if you change hibernate.hbm2ddl.auto property value from &quot;create&quot; to &quot;update&quot;</description>
		<content:encoded><![CDATA[<p>Great tip Tom! Step 5 also works if you change hibernate.hbm2ddl.auto property value from &#8220;create&#8221; to &#8220;update&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

