<?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: Write your Google App Engine applications in Groovy</title>
	<atom:link href="http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/</link>
	<description>The voice of SpringSource</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:31:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: 用 Groovy 編寫 Google App Engine 應用（一） &#124; DreamersCorp.</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-201171</link>
		<dc:creator>用 Groovy 編寫 Google App Engine 應用（一） &#124; DreamersCorp.</dc:creator>
		<pubDate>Sun, 28 Aug 2011 10:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-201171</guid>
		<description>[...] （原文來源：Write your Google App Engine applications in Groovy）（譯文來源：用 Groovy 編寫你自己的 Google App Engine 應用）Google 的Google App Engine平台現已支持Python以外的其他兩個程設語言：Java和Groovy！SpringSource Groovy團隊和Google App Engine Java 團隊攜手合作，仔細處理大量的細節，好確保Groovy可以很好的運行在Google App Engine。他們針對哪些限制嚴格以及有很強的安全管理政策的領域，為Groovy編寫了一些更新，之後在預定日期發佈了 Groovy 1.6.1 更新。在新版本中，將&#8221;groovy-all&#8221; JAR 文件直接放在 WEB-INF/lib 目錄下，你就可以開始通過 Groovy 建立你的網頁應用程式，並運行在 Google 的內核上了。開始入門首先，顯然，你得在 Google App Engine 上註冊一個Google帳號，以便你可以在該平台創建應用程式，並將其上載到雲端。你也需要下載並安裝Google App Engine Java SDK。上述所有的步驟，你應該參看App Engine 開發人員指南。一旦 SDK 安裝完畢，還應該下載並安裝 Groovy1.6。 前面的步驟需要用Groovy編譯一個servlet，你會用到 Groovy，但在剩餘的部分，由於我們將使用Groovy在運行時自編譯的 Groovlets，所以就不再需要了。有了 Java， SDK, Groovy 安裝，我們就可繼續，通過 Groovy-ready 項目模板建立一個新項目。下載摘要，解壓縮到一個你喜歡的目錄。 （圖片來源：blog.springsource.com）在根目錄下，你會看到一個包含著所有 Groovy 和 Java 原始碼需要去編譯的 src 目錄 (servlets, domain classes, utility classes, 等等)。 deploy 目錄基本上同將要輸出的webapp一致：你會看到一個包含所有編譯過的類的 classes 目錄， 存放各種 JAR 文件 lib 目錄(Groovy JAR 和 Google App Engine 自己的 API JAR 一樣)， 以及存放 Groovlet 的 groovy 目錄，在後續的部份會提及。 appengine-web.xml 文件，則是一個 App Engine 特殊描述器。你可以能找到標準的 web.xml， 在它裡面，你可以定義你自己的 servlets, 你的映射關係以及其它的東西。參考來源用 Groovy 編寫你自己的 Google App Engine 應用  2009-12-13 06:43:35  Posted in Google &#124; [...]</description>
		<content:encoded><![CDATA[<p>[...] （原文來源：Write your Google App Engine applications in Groovy）（譯文來源：用 Groovy 編寫你自己的 Google App Engine 應用）Google 的Google App Engine平台現已支持Python以外的其他兩個程設語言：Java和Groovy！SpringSource Groovy團隊和Google App Engine Java 團隊攜手合作，仔細處理大量的細節，好確保Groovy可以很好的運行在Google App Engine。他們針對哪些限制嚴格以及有很強的安全管理政策的領域，為Groovy編寫了一些更新，之後在預定日期發佈了 Groovy 1.6.1 更新。在新版本中，將&#034;groovy-all&#034; JAR 文件直接放在 WEB-INF/lib 目錄下，你就可以開始通過 Groovy 建立你的網頁應用程式，並運行在 Google 的內核上了。開始入門首先，顯然，你得在 Google App Engine 上註冊一個Google帳號，以便你可以在該平台創建應用程式，並將其上載到雲端。你也需要下載並安裝Google App Engine Java SDK。上述所有的步驟，你應該參看App Engine 開發人員指南。一旦 SDK 安裝完畢，還應該下載並安裝 Groovy1.6。 前面的步驟需要用Groovy編譯一個servlet，你會用到 Groovy，但在剩餘的部分，由於我們將使用Groovy在運行時自編譯的 Groovlets，所以就不再需要了。有了 Java， SDK, Groovy 安裝，我們就可繼續，通過 Groovy-ready 項目模板建立一個新項目。下載摘要，解壓縮到一個你喜歡的目錄。 （圖片來源：blog.springsource.com）在根目錄下，你會看到一個包含著所有 Groovy 和 Java 原始碼需要去編譯的 src 目錄 (servlets, domain classes, utility classes, 等等)。 deploy 目錄基本上同將要輸出的webapp一致：你會看到一個包含所有編譯過的類的 classes 目錄， 存放各種 JAR 文件 lib 目錄(Groovy JAR 和 Google App Engine 自己的 API JAR 一樣)， 以及存放 Groovlet 的 groovy 目錄，在後續的部份會提及。 appengine-web.xml 文件，則是一個 App Engine 特殊描述器。你可以能找到標準的 web.xml， 在它裡面，你可以定義你自己的 servlets, 你的映射關係以及其它的東西。參考來源用 Groovy 編寫你自己的 Google App Engine 應用  2009-12-13 06:43:35  Posted in Google | [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Java no Google AppEngine &#187; devlog</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-199536</link>
		<dc:creator>Java no Google AppEngine &#187; devlog</dc:creator>
		<pubDate>Thu, 11 Aug 2011 04:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-199536</guid>
		<description>[...] O pessoal do groovy já se adiantou e já rodou aplicações em groovy lá. [...]</description>
		<content:encoded><![CDATA[<p>[...] O pessoal do groovy já se adiantou e já rodou aplicações em groovy lá. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-198589</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 15 Jul 2011 16:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-198589</guid>
		<description>Hi, nice Content, keep it up! I have bookmarked for future reference! All the best</description>
		<content:encoded><![CDATA[<p>Hi, nice Content, keep it up! I have bookmarked for future reference! All the best</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Los mejores recursos para aprender Groovy</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-191791</link>
		<dc:creator>Los mejores recursos para aprender Groovy</dc:creator>
		<pubDate>Sun, 03 Apr 2011 16:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-191791</guid>
		<description>[...] Write your Google App Engine applications in Groovy [...]</description>
		<content:encoded><![CDATA[<p>[...] Write your Google App Engine applications in Groovy [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HB</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-182868</link>
		<dc:creator>HB</dc:creator>
		<pubDate>Tue, 18 Jan 2011 00:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-182868</guid>
		<description>Has anyone figured out if Grails/GWT app can be uploaded on GAE? 
If not what would be the choice for hosting? Thanks.</description>
		<content:encoded><![CDATA[<p>Has anyone figured out if Grails/GWT app can be uploaded on GAE?<br />
If not what would be the choice for hosting? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google App Engine &#171; HAT</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-179276</link>
		<dc:creator>Google App Engine &#171; HAT</dc:creator>
		<pubDate>Wed, 24 Nov 2010 13:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-179276</guid>
		<description>[...] otras.  El eje gira en torno a lenguajes que utilizan un intérprete de la JVM (Java, Ruby ó Groovy ) asimismo ofrece un entorno de tiempo de ejecución Python dedicado, que incluye un rápido [...]</description>
		<content:encoded><![CDATA[<p>[...] otras.  El eje gira en torno a lenguajes que utilizan un intérprete de la JVM (Java, Ruby ó Groovy ) asimismo ofrece un entorno de tiempo de ejecución Python dedicado, que incluye un rápido [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Los mejores recursos para aprender Groovy &#171; JuanjoEfe</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-178076</link>
		<dc:creator>Los mejores recursos para aprender Groovy &#171; JuanjoEfe</dc:creator>
		<pubDate>Wed, 03 Nov 2010 18:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-178076</guid>
		<description>[...] Write your Google App Engine applications in Groovy [...]</description>
		<content:encoded><![CDATA[<p>[...] Write your Google App Engine applications in Groovy [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Groovy Integration to Google App Engine &#124; David Choi</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-174983</link>
		<dc:creator>Groovy Integration to Google App Engine &#124; David Choi</dc:creator>
		<pubDate>Mon, 09 Aug 2010 23:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-174983</guid>
		<description>[...] http://blog.springsource.com/2009/04/07/write-your-google-app-engine-applications-in-groovy/ Share and Enjoy:       window.fbAsyncInit = function() { FB.init({ appId: &#039;141864722506239&#039;, status: true, cookie: true, xfbml: true }); }; (function() { var e = document.createElement(&#039;script&#039;); e.async = true; e.src = document.location.protocol + &#039;//connect.facebook.net/en_US/all.js&#039;; document.getElementById(&#039;fb-root&#039;).appendChild(e); }()); [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.springsource.com/2009/04/07/write-your-google-app-engine-applications-in-groovy/" rel="nofollow">http://blog.springsource.com/2009/04/07/write-your-google-app-engine-applications-in-groovy/</a> Share and Enjoy:       window.fbAsyncInit = function() { FB.init({ appId: &#039;141864722506239&#039;, status: true, cookie: true, xfbml: true }); }; (function() { var e = document.createElement(&#039;script&#039;); e.async = true; e.src = document.location.protocol + &#039;//connect.facebook.net/en_US/all.js&#039;; document.getElementById(&#039;fb-root&#039;).appendChild(e); }()); [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: granite counter tops</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-174817</link>
		<dc:creator>granite counter tops</dc:creator>
		<pubDate>Thu, 05 Aug 2010 08:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-174817</guid>
		<description>China TwoWin Stone fabricate the absolute black granite,black slate,black basalt,black galaxy granite,shanxi black granite，granite monuments,granite memorial,granite headstones,stone monument,stone memorials,grave markers,animal memorials with good quality.</description>
		<content:encoded><![CDATA[<p>China TwoWin Stone fabricate the absolute black granite,black slate,black basalt,black galaxy granite,shanxi black granite，granite monuments,granite memorial,granite headstones,stone monument,stone memorials,grave markers,animal memorials with good quality.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: منتديات</title>
		<link>http://blog.springsource.org/2009/04/07/write-your-google-app-engine-applications-in-groovy/comment-page-2/#comment-173916</link>
		<dc:creator>منتديات</dc:creator>
		<pubDate>Sat, 26 Jun 2010 20:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springsource.com/?p=1570#comment-173916</guid>
		<description>It&#039;s another scam Laurent. The federal government must have forced through impediments. Move on ..



http://www.amlly.com/vb

http://www.amlly.com</description>
		<content:encoded><![CDATA[<p>It&#039;s another scam Laurent. The federal government must have forced through impediments. Move on ..</p>
<p><a href="http://www.amlly.com/vb" rel="nofollow">http://www.amlly.com/vb</a></p>
<p><a href="http://www.amlly.com" rel="nofollow">http://www.amlly.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

