<?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>Misfiring Neurons &#187; Spring Framework</title>
	<atom:link href="http://pavel.tcholakov.net/category/technology/spring-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://pavel.tcholakov.net</link>
	<description>Just another geek with a blog</description>
	<lastBuildDate>Wed, 24 Feb 2010 16:30:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Annotation-based dispatch for Spring ApplicationEvents</title>
		<link>http://pavel.tcholakov.net/2009/04/annotation-based-dispatch-for-spring-applicationevents/</link>
		<comments>http://pavel.tcholakov.net/2009/04/annotation-based-dispatch-for-spring-applicationevents/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 13:20:33 +0000</pubDate>
		<dc:creator>Pavel</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Spring Framework]]></category>

		<guid isPermaLink="false">http://pavel.tcholakov.net/?p=131</guid>
		<description><![CDATA[I created a little extension that allows you to dispatch Spring application context events in a clean and type-safe way to POJO beans. Instead of implementing the ApplicationListener interface, one can simply create a handler as follows:

public class EventListener {
    @EventHandler
    public void onAppEvent(MyCustomEvent event) {
        // ...
    }
}

The code is available as a zipped [...]]]></description>
			<content:encoded><![CDATA[<p>I created a little extension that allows you to dispatch Spring application context events in a clean and type-safe way to POJO beans. Instead of implementing the ApplicationListener interface, one can simply create a handler as follows:</p>
<blockquote>
<pre><span style="color: #888888;">public class EventListener {
    @EventHandler
    public void onAppEvent(MyCustomEvent event) {
        // ...
    }
}</span></pre>
</blockquote>
<p>The code is available as a <a href="http://pavel.tcholakov.net/code/eventhandler-annotation-20090408.zip">zipped up Maven project</a> or via Git:</p>
<pre style="padding-left: 30px;"><span style="color: #888888;">git clone http://pavel.tcholakov.net/code/eventhandler-annotation.git/</span></pre>
<p><a href="http://forum.springsource.org/showthread.php?t=70171">Related Spring forum thread</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pavel.tcholakov.net/2009/04/annotation-based-dispatch-for-spring-applicationevents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
