<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Redcode &#187; spring</title>
	<atom:link href="http://www.redcode.nl/blog/tag/spring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redcode.nl</link>
	<description>Java, algorithms, math and more</description>
	<lastBuildDate>Fri, 30 Dec 2011 12:21:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>(Annotated) Field injection vs Constructor injection</title>
		<link>http://www.redcode.nl/blog/2010/09/annotated-field-injection-vs-constructor-injection/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=annotated-field-injection-vs-constructor-injection</link>
		<comments>http://www.redcode.nl/blog/2010/09/annotated-field-injection-vs-constructor-injection/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 10:35:41 +0000</pubDate>
		<dc:creator>royvanrijn</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[constructor injection]]></category>
		<category><![CDATA[dependency injection]]></category>
		<category><![CDATA[field injection]]></category>
		<category><![CDATA[google guice]]></category>
		<category><![CDATA[picocontainer]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.redcode.nl/?p=516</guid>
		<description><![CDATA[<p>A couple of people replied to my last article about constructor vs setter injection that they prefer a third option, field injection. This is a slight variant of setter injection in which we magically let the setter dissapear.</p> <p>So, another blogpost here!</p> <p><br /> Let me first show what field injection looks like:</p> public class [...]]]></description>
		<wfw:commentRss>http://www.redcode.nl/blog/2010/09/annotated-field-injection-vs-constructor-injection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Setter vs Constructor injection</title>
		<link>http://www.redcode.nl/blog/2010/09/setter-vs-constructor-injection/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setter-vs-constructor-injection</link>
		<comments>http://www.redcode.nl/blog/2010/09/setter-vs-constructor-injection/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 21:59:44 +0000</pubDate>
		<dc:creator>royvanrijn</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[constructor]]></category>
		<category><![CDATA[dependency injection]]></category>
		<category><![CDATA[setter]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.redcode.nl/?p=506</guid>
		<description><![CDATA[<p>Recently I&#8217;ve had a discussion with a collegue about Setter vs Constructor injection. For those who don&#8217;t know what I&#8217;m talking about a quick example:</p> <p>Setter injection:</p> public class SomeClass { private SomeDependency someDependency; public SomeClass() { //Empty constructor } public void setSomeDependency(SomeDependency someDependency) { this.someDependency = someDependency; } } <p>Constructor injection:</p> public class SomeClass [...]]]></description>
		<wfw:commentRss>http://www.redcode.nl/blog/2010/09/setter-vs-constructor-injection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Learn to use Dependency Injection</title>
		<link>http://www.redcode.nl/blog/2010/01/dependency-injection-dissection/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dependency-injection-dissection</link>
		<comments>http://www.redcode.nl/blog/2010/01/dependency-injection-dissection/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:43:08 +0000</pubDate>
		<dc:creator>royvanrijn</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[dependency injection]]></category>
		<category><![CDATA[google guice]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.redcode.nl/?p=239</guid>
		<description><![CDATA[Recently I placed a comment on <a href="http://blog.objectmentor.com/articles/2010/01/17/dependency-injection-inversion">this</a> interesting blog from Uncle Bob Martin (Robert C. Martin). It contains a brief description on how I teach people how to use the Spring Framework.

Now, by popular demand (one person requested it over Twitter), I'll guide you through the method and examples I use in this blogpost. It explains why people should use frameworks like Spring and/or Google Guice, and how.]]></description>
		<wfw:commentRss>http://www.redcode.nl/blog/2010/01/dependency-injection-dissection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing with Spring</title>
		<link>http://www.redcode.nl/blog/2009/12/testing-with-spring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=testing-with-spring</link>
		<comments>http://www.redcode.nl/blog/2009/12/testing-with-spring/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:49:31 +0000</pubDate>
		<dc:creator>royvanrijn</dc:creator>
				<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[context]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[mock]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://www.redcode.nl/?p=154</guid>
		<description><![CDATA[<p>To improve the quality of your code it is important to thoroughly test your code. Not only using unit tests but also using integration tests. I&#8217;ll describe these terms and show examples on how to create tests using JUnit and Spring&#8217;s Test library.</p> Unit Testing <p>A unit-test is an automated test that tests one single [...]]]></description>
		<wfw:commentRss>http://www.redcode.nl/blog/2009/12/testing-with-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

