<?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: Introducing Spring ROO: Part 1</title>
	<atom:link href="http://stsmedia.net/introducing-spring-roo/feed/" rel="self" type="application/rss+xml" />
	<link>http://stsmedia.net/introducing-spring-roo/</link>
	<description>Programming, Photography, Life</description>
	<pubDate>Wed, 10 Mar 2010 13:00:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rafael</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-159</link>
		<dc:creator>Rafael</dc:creator>
		<pubDate>Thu, 18 Feb 2010 18:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-159</guid>
		<description>Hi,

another Spring ROO Article you can find here.

http://www.developers-blog.org/blog/default/2010/02/16/Spring-Roo

Rafael</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>another Spring ROO Article you can find here.</p>
<p><a href="http://www.developers-blog.org/blog/default/2010/02/16/Spring-Roo" rel="nofollow">http://www.developers-blog.org/blog/default/2010/02/16/Spring-Roo</a></p>
<p>Rafael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frankie Huang</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-137</link>
		<dc:creator>Frankie Huang</dc:creator>
		<pubDate>Sat, 26 Dec 2009 03:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-137</guid>
		<description>When the ROO's documentaion will well-prepared?</description>
		<content:encoded><![CDATA[<p>When the ROO&#8217;s documentaion will well-prepared?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-89</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Tue, 11 Aug 2009 05:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-89</guid>
		<description>@Keith

Hi Keith,
Not all Java developers spend all day developing CRUD applications.
All tools have their own merits and are usually developed when someone sees a need for them.

Stephen</description>
		<content:encoded><![CDATA[<p>@Keith</p>
<p>Hi Keith,<br />
Not all Java developers spend all day developing CRUD applications.<br />
All tools have their own merits and are usually developed when someone sees a need for them.</p>
<p>Stephen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Schmidt</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-80</link>
		<dc:creator>Stefan Schmidt</dc:creator>
		<pubDate>Fri, 26 Jun 2009 23:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-80</guid>
		<description>Rega,

I have just tried to replicate this but could not. Can you please let me know which Roo version you are using?

-Stefan</description>
		<content:encoded><![CDATA[<p>Rega,</p>
<p>I have just tried to replicate this but could not. Can you please let me know which Roo version you are using?</p>
<p>-Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rega</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-79</link>
		<dc:creator>Rega</dc:creator>
		<pubDate>Fri, 26 Jun 2009 11:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-79</guid>
		<description>Hi, 

I tried running the 'shoppinglist' sample application. I followed the steps (in development mode) that I show you here, 

windows XP
java version "1.6.0_07"
apache-maven-2.1.0

create project -topLevelPackage net.stsmedia.roo.shoppinglist
install jpa -provider HIBERNATE -database MYSQL
new persistent class jpa -name ~.domain.Item
add field string -fieldName name -notNull
add field string comments -sizeMax 150
add field number -fieldName price -type java.lang.Float
new persistent class jpa -name ~.domain.ShoppingList
add field string -fieldName title -notNull
add field date jpa -fieldName shoppingDate -type java.util.Date
add field set jpa -element ~.domain.Item -fieldName items
new controller automatic -name ~.web.ShoppingListController -formBackingObject ~.domain.ShoppingList
new controller automatic -name ~.web.ItemController -formBackingObject ~.domain.Item


but when I try to executed  the 'new controller ...' step I got this error: [...]

I've tried another example, like Ben's 'wedding' and everything was ok. Please If someone could help me with this error I'd appreciate it a lot. 

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I tried running the &#8217;shoppinglist&#8217; sample application. I followed the steps (in development mode) that I show you here, </p>
<p>windows XP<br />
java version &#8220;1.6.0_07&#8243;<br />
apache-maven-2.1.0</p>
<p>create project -topLevelPackage net.stsmedia.roo.shoppinglist<br />
install jpa -provider HIBERNATE -database MYSQL<br />
new persistent class jpa -name ~.domain.Item<br />
add field string -fieldName name -notNull<br />
add field string comments -sizeMax 150<br />
add field number -fieldName price -type java.lang.Float<br />
new persistent class jpa -name ~.domain.ShoppingList<br />
add field string -fieldName title -notNull<br />
add field date jpa -fieldName shoppingDate -type java.util.Date<br />
add field set jpa -element ~.domain.Item -fieldName items<br />
new controller automatic -name ~.web.ShoppingListController -formBackingObject ~.domain.ShoppingList<br />
new controller automatic -name ~.web.ItemController -formBackingObject ~.domain.Item</p>
<p>but when I try to executed  the &#8216;new controller &#8230;&#8217; step I got this error: [...]</p>
<p>I&#8217;ve tried another example, like Ben&#8217;s &#8216;wedding&#8217; and everything was ok. Please If someone could help me with this error I&#8217;d appreciate it a lot. </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Schmidt</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-78</link>
		<dc:creator>Stefan Schmidt</dc:creator>
		<pubDate>Wed, 24 Jun 2009 10:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-78</guid>
		<description>Haikal,

Thanks for updating this :).

-Stefan</description>
		<content:encoded><![CDATA[<p>Haikal,</p>
<p>Thanks for updating this :).</p>
<p>-Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Haikal</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-77</link>
		<dc:creator>Haikal</dc:creator>
		<pubDate>Wed, 24 Jun 2009 10:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-77</guid>
		<description>New mvn install command should be:

mvn install:install-file -DgroupId=org.springframework.roo   -DartifactId=roo-annotations -Dversion=1.0.0.M2 -Dpackaging=jar   -Dfile=$ROO_HOME/dist/org.springframework.roo.annotations-1.0.0.M2.jar</description>
		<content:encoded><![CDATA[<p>New mvn install command should be:</p>
<p>mvn install:install-file -DgroupId=org.springframework.roo   -DartifactId=roo-annotations -Dversion=1.0.0.M2 -Dpackaging=jar   -Dfile=$ROO_HOME/dist/org.springframework.roo.annotations-1.0.0.M2.jar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: depy</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-67</link>
		<dc:creator>depy</dc:creator>
		<pubDate>Fri, 22 May 2009 08:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-67</guid>
		<description>Sounds like it will be very flexible. I like it. :)

If I remember something I'll use the jira.

Wish you good luck with Roo and can't wait for more good news.

Regards,

Matjaz</description>
		<content:encoded><![CDATA[<p>Sounds like it will be very flexible. I like it. <img src='http://stsmedia.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If I remember something I&#8217;ll use the jira.</p>
<p>Wish you good luck with Roo and can&#8217;t wait for more good news.</p>
<p>Regards,</p>
<p>Matjaz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sschmidt</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-66</link>
		<dc:creator>sschmidt</dc:creator>
		<pubDate>Fri, 22 May 2009 07:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-66</guid>
		<description>@depy,

Removal of view artifacts is currently not supported. However since the controllers are exposing all resources via REST you can replace the view technology to your liking. Also, you can remove the JS artifacts manually and switch of auto-generation of view artifacts in the controller annotation (automaticallyMaintainView=false).

We have also separated the JSP (and Dojo) code generating add-on so that there can be easily alternative solutions provided in the future.

You are invited to lodge a improvement request against the Roo Web component in the Roo JIRA: http://jira.springframework.org/browse/ROO and assign the ticket to me (sschmidt).

Thanks,
Stefan</description>
		<content:encoded><![CDATA[<p>@depy,</p>
<p>Removal of view artifacts is currently not supported. However since the controllers are exposing all resources via REST you can replace the view technology to your liking. Also, you can remove the JS artifacts manually and switch of auto-generation of view artifacts in the controller annotation (automaticallyMaintainView=false).</p>
<p>We have also separated the JSP (and Dojo) code generating add-on so that there can be easily alternative solutions provided in the future.</p>
<p>You are invited to lodge a improvement request against the Roo Web component in the Roo JIRA: <a href="http://jira.springframework.org/browse/ROO" rel="nofollow">http://jira.springframework.org/browse/ROO</a> and assign the ticket to me (sschmidt).</p>
<p>Thanks,<br />
Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: depy</title>
		<link>http://stsmedia.net/introducing-spring-roo/comment-page-1/#comment-65</link>
		<dc:creator>depy</dc:creator>
		<pubDate>Fri, 22 May 2009 07:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://stsmedia.net/?p=215#comment-65</guid>
		<description>I actually tried it and I really like, but I have another question.

Will there be any way to turn off the stuff you don't want to use. For example if I dont want those JS effects, could I turn this off somehow?

Best regards,

Matjaz</description>
		<content:encoded><![CDATA[<p>I actually tried it and I really like, but I have another question.</p>
<p>Will there be any way to turn off the stuff you don&#8217;t want to use. For example if I dont want those JS effects, could I turn this off somehow?</p>
<p>Best regards,</p>
<p>Matjaz</p>
]]></content:encoded>
	</item>
</channel>
</rss>
