<?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: Goolge app engine + java + spring + REST + JSON + Flex &#8211; Part 1</title>
	<atom:link href="http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87</link>
	<description></description>
	<lastBuildDate>Mon, 19 Jul 2010 21:09:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Duvvur VS</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-504</link>
		<dc:creator>Duvvur VS</dc:creator>
		<pubDate>Mon, 19 Jul 2010 21:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-504</guid>
		<description>I am using following method in Controller
	@ModelAttribute(&quot;users&quot;)
  @RequestMapping(value = &quot;/GetList.json&quot;, method = RequestMethod.GET)
	  public @ResponseBody List getList() throws Exception{
	  List users = new ArrayList();
	    try {
	    
	      User user1 = new User();
	      
	      user1.setFirstName(&quot;Vijayasekhar&quot;);
	      user1.setLastName(&quot;Duvvur&quot;);
	      users.add(user1);
	      
	      User user2 = new User();
        
	      user2.setFirstName(&quot;Markus&quot;);
	      user2.setLastName(&quot;Rogosinsky&quot;);
	      users.add(user2);
	      
	    } catch (Exception e) {
	      return null;
	    }
	     System.out.println(&quot;Exit GetList method &quot; + users);
	    return users;
	  }

and i am invoking using RestTemplate as follows

List list = template.getForObject(url, List.class);

When i am trying to print list its collection of LinkedHashMap objects instead of User objects

I am not understanding whats going on ..</description>
		<content:encoded><![CDATA[<p>I am using following method in Controller<br />
	@ModelAttribute(&#8220;users&#8221;)<br />
  @RequestMapping(value = &#8220;/GetList.json&#8221;, method = RequestMethod.GET)<br />
	  public @ResponseBody List getList() throws Exception{<br />
	  List users = new ArrayList();<br />
	    try {</p>
<p>	      User user1 = new User();</p>
<p>	      user1.setFirstName(&#8220;Vijayasekhar&#8221;);<br />
	      user1.setLastName(&#8220;Duvvur&#8221;);<br />
	      users.add(user1);</p>
<p>	      User user2 = new User();</p>
<p>	      user2.setFirstName(&#8220;Markus&#8221;);<br />
	      user2.setLastName(&#8220;Rogosinsky&#8221;);<br />
	      users.add(user2);</p>
<p>	    } catch (Exception e) {<br />
	      return null;<br />
	    }<br />
	     System.out.println(&#8220;Exit GetList method &#8221; + users);<br />
	    return users;<br />
	  }</p>
<p>and i am invoking using RestTemplate as follows</p>
<p>List list = template.getForObject(url, List.class);</p>
<p>When i am trying to print list its collection of LinkedHashMap objects instead of User objects</p>
<p>I am not understanding whats going on ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fix service error 1053</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-308</link>
		<dc:creator>fix service error 1053</dc:creator>
		<pubDate>Sat, 13 Feb 2010 21:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-308</guid>
		<description>Adore the newest look. I enjoyed this great article. Thanks for the great writing.</description>
		<content:encoded><![CDATA[<p>Adore the newest look. I enjoyed this great article. Thanks for the great writing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ladies Man</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-293</link>
		<dc:creator>Ladies Man</dc:creator>
		<pubDate>Thu, 11 Feb 2010 04:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-293</guid>
		<description>Man, i hope my blog is this good some day! :) haha!</description>
		<content:encoded><![CDATA[<p>Man, i hope my blog is this good some day! <img src='http://www.wetfeetblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  haha!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cowtown Coder</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-224</link>
		<dc:creator>Cowtown Coder</dc:creator>
		<pubDate>Sat, 28 Nov 2009 08:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-224</guid>
		<description>FWIW, error with Jackson is due to GAE bug: http://code.google.com/p/googleappengine/issues/detail?id=2276</description>
		<content:encoded><![CDATA[<p>FWIW, error with Jackson is due to GAE bug: <a href="http://code.google.com/p/googleappengine/issues/detail?id=2276" rel="nofollow">http://code.google.com/p/googleappengine/issues/detail?id=2276</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spyware Removal Tips</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-207</link>
		<dc:creator>Spyware Removal Tips</dc:creator>
		<pubDate>Wed, 18 Nov 2009 04:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-207</guid>
		<description>Just  wanted to tell you thanks for all the great info found on your site, even helped me with my job recently :) keep it up!</description>
		<content:encoded><![CDATA[<p>Just  wanted to tell you thanks for all the great info found on your site, even helped me with my job recently <img src='http://www.wetfeetblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  keep it up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-205</link>
		<dc:creator>Tomas</dc:creator>
		<pubDate>Mon, 16 Nov 2009 16:13:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-205</guid>
		<description>I just uploaded new project zip. Old one had winzip only compression settings.</description>
		<content:encoded><![CDATA[<p>I just uploaded new project zip. Old one had winzip only compression settings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-203</link>
		<dc:creator>Tomas</dc:creator>
		<pubDate>Sun, 15 Nov 2009 16:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-203</guid>
		<description>Erwin,

Yes something is wrong with the zip. I can open it only one of my laptops that has winzip.
I will upload updated zip Monday.</description>
		<content:encoded><![CDATA[<p>Erwin,</p>
<p>Yes something is wrong with the zip. I can open it only one of my laptops that has winzip.<br />
I will upload updated zip Monday.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erwin</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-200</link>
		<dc:creator>Erwin</dc:creator>
		<pubDate>Fri, 13 Nov 2009 19:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-200</guid>
		<description>Hi,

Is the zipfile broken? I can see the file but i get errors when i try to extract. The JSONView.java is what i want to see, if i copy the code fragment i get errors. I would like to get it working! ;-)
thx for the tutorial</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Is the zipfile broken? I can see the file but i get errors when i try to extract. The JSONView.java is what i want to see, if i copy the code fragment i get errors. I would like to get it working! <img src='http://www.wetfeetblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
thx for the tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-196</link>
		<dc:creator>Tomas</dc:creator>
		<pubDate>Thu, 12 Nov 2009 14:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-196</guid>
		<description>Chris,

I checked, the source and all the configs are there in the zipped up project. Google app project is not a &quot;web application&quot; project in eclipse. If you are building regular web app, start with a new project wizard and add the required configurations and libraries from the downloaded one by hand.</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>I checked, the source and all the configs are there in the zipped up project. Google app project is not a &#8220;web application&#8221; project in eclipse. If you are building regular web app, start with a new project wizard and add the required configurations and libraries from the downloaded one by hand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.wetfeetblog.com/goolge-app-engine-java-spring-rest-json-flex-part-1/87/comment-page-1#comment-194</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 10 Nov 2009 16:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetfeetblog.com/?p=87#comment-194</guid>
		<description>Thank you for the tutorial.  I am trying to use your example to get REST working with Spring 3.0RC1 w/o Google.  I tried to get the full project source as I could not get my code to work off the tutorial but the source is missing the source files and the XML files.  Did I do something wrong?  Thanks in advance and great job on the tutorial.  I know I am close.</description>
		<content:encoded><![CDATA[<p>Thank you for the tutorial.  I am trying to use your example to get REST working with Spring 3.0RC1 w/o Google.  I tried to get the full project source as I could not get my code to work off the tutorial but the source is missing the source files and the XML files.  Did I do something wrong?  Thanks in advance and great job on the tutorial.  I know I am close.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
