<?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: Spring Python makes final 1.0.0 release</title>
	<atom:link href="http://blog.springpython.webfactional.com/2009/07/01/spring-python-makes-final-1-0-0-release/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.springpython.webfactional.com/2009/07/01/spring-python-makes-final-1-0-0-release/</link>
	<description>Spring + Python = Power</description>
	<lastBuildDate>Sat, 06 Mar 2010 23:23:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kay Schluehr</title>
		<link>http://blog.springpython.webfactional.com/2009/07/01/spring-python-makes-final-1-0-0-release/comment-page-1/#comment-43</link>
		<dc:creator>Kay Schluehr</dc:creator>
		<pubDate>Sun, 05 Jul 2009 04:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springpython.webfactional.com/?p=251#comment-43</guid>
		<description>&lt;i&gt;I feel like Spring Python in jython will probably be more pythonic than Spring Framework classes.For one thing, the DatabaseTemplate is probably more succinct and less bulky than the JdbcTemplate. Using python collections is probably easier to parse than Java collections.&lt;/i&gt;

Python collections map directly to Java collections in Jython. If Java requires a List than passing a Python list is just adequate. The Java integration in Jython is the best part of Jython as far as I can tell.

So I&#039;ll take you by the word and going a bit into Java Spring + Jython for the next 3-4 weeks ( after clarifying some basics ). I&#039;ve no prior experience with Spring, so I need to learn it while creating a small layer above Spring for Jython. 

Jython needs more showcases of what&#039;s doable - not just running popular Python frameworks like Django which has no idea what to make of Java at all.</description>
		<content:encoded><![CDATA[<p><i>I feel like Spring Python in jython will probably be more pythonic than Spring Framework classes.For one thing, the DatabaseTemplate is probably more succinct and less bulky than the JdbcTemplate. Using python collections is probably easier to parse than Java collections.</i></p>
<p>Python collections map directly to Java collections in Jython. If Java requires a List than passing a Python list is just adequate. The Java integration in Jython is the best part of Jython as far as I can tell.</p>
<p>So I&#8217;ll take you by the word and going a bit into Java Spring + Jython for the next 3-4 weeks ( after clarifying some basics ). I&#8217;ve no prior experience with Spring, so I need to learn it while creating a small layer above Spring for Jython. </p>
<p>Jython needs more showcases of what&#8217;s doable &#8211; not just running popular Python frameworks like Django which has no idea what to make of Java at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gregturn</title>
		<link>http://blog.springpython.webfactional.com/2009/07/01/spring-python-makes-final-1-0-0-release/comment-page-1/#comment-42</link>
		<dc:creator>gregturn</dc:creator>
		<pubDate>Sun, 05 Jul 2009 03:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springpython.webfactional.com/?p=251#comment-42</guid>
		<description>My first love for python was the fact that many, MANY libraries originally written in C could now be wrapped with python, and accessible through this nice, higher level language. But the more you can code in pure python, the better. Consider things like Google App Engine. That is something originally available in python, before they got to java access. The deal was, you couldn&#039;t use any of the C-extensions people had, but instead use pure python. That is why i want to move towards a pure python implementation of Spring Python. Right now, we depend on Amara, which has a C-extension in it, so we can&#039;t run it on GAE or inside jython. There are plans to migrate off of Amara, so that we can support more platforms. If we can get to pure python, you can use it side-by-side with the Spring Framework in jython, and decide which better suits your needs. Who knows? Perhaps a mixture may be exactly what you need. I can&#039;t make promises because every application is different. But the more choices, the better. I feel like Spring Python in jython will probably be more pythonic than Spring Framework classes. For one thing, the DatabaseTemplate is probably more succinct and less bulky than the JdbcTemplate. Using python collections is probably easier to parse than Java collections.</description>
		<content:encoded><![CDATA[<p>My first love for python was the fact that many, MANY libraries originally written in C could now be wrapped with python, and accessible through this nice, higher level language. But the more you can code in pure python, the better. Consider things like Google App Engine. That is something originally available in python, before they got to java access. The deal was, you couldn&#8217;t use any of the C-extensions people had, but instead use pure python. That is why i want to move towards a pure python implementation of Spring Python. Right now, we depend on Amara, which has a C-extension in it, so we can&#8217;t run it on GAE or inside jython. There are plans to migrate off of Amara, so that we can support more platforms. If we can get to pure python, you can use it side-by-side with the Spring Framework in jython, and decide which better suits your needs. Who knows? Perhaps a mixture may be exactly what you need. I can&#8217;t make promises because every application is different. But the more choices, the better. I feel like Spring Python in jython will probably be more pythonic than Spring Framework classes. For one thing, the DatabaseTemplate is probably more succinct and less bulky than the JdbcTemplate. Using python collections is probably easier to parse than Java collections.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kay Schluehr</title>
		<link>http://blog.springpython.webfactional.com/2009/07/01/spring-python-makes-final-1-0-0-release/comment-page-1/#comment-41</link>
		<dc:creator>Kay Schluehr</dc:creator>
		<pubDate>Sat, 04 Jul 2009 19:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.springpython.webfactional.com/?p=251#comment-41</guid>
		<description>Greg, there is something I wonder about regarding your project. I&#039;m right now approaching Java from Python using Jython and this seems to be a more evident vector. It&#039;s also something which doesn&#039;t need much justification in general because that&#039;s what Python has always been about: scripting and providing a simple, direct and succinct access to libraries/frameworks written in other languages.</description>
		<content:encoded><![CDATA[<p>Greg, there is something I wonder about regarding your project. I&#8217;m right now approaching Java from Python using Jython and this seems to be a more evident vector. It&#8217;s also something which doesn&#8217;t need much justification in general because that&#8217;s what Python has always been about: scripting and providing a simple, direct and succinct access to libraries/frameworks written in other languages.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
