<?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>Sean Moore - Flex Developer, AIR Developer, ActionScript Programmer &#187; Aspect Oriented Programming</title>
	<atom:link href="http://seantheflexguy.com/blog/category/aspect-oriented-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://seantheflexguy.com/blog</link>
	<description>Flex Developer, AIR Developer, ActionScript Programmer</description>
	<lastBuildDate>Fri, 21 May 2010 14:59:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>RobotLegs AS3 Framework Presentations</title>
		<link>http://seantheflexguy.com/blog/2010/03/20/robotlegs-as3-framework-presentations/</link>
		<comments>http://seantheflexguy.com/blog/2010/03/20/robotlegs-as3-framework-presentations/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 15:50:17 +0000</pubDate>
		<dc:creator>seantheflexguy</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Aspect Oriented Programming]]></category>
		<category><![CDATA[Bleeding Edge Flash]]></category>
		<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Flex Best Practices]]></category>
		<category><![CDATA[Flex Presentations]]></category>
		<category><![CDATA[Flex Training]]></category>
		<category><![CDATA[Inversion Of Control]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Software development process]]></category>

		<guid isPermaLink="false">http://seantheflexguy.com/blog/?p=468</guid>
		<description><![CDATA[I&#8217;ll be presenting at the Denver Flex User&#8217;s Group on July 15th on RobotLegs. In addition I should also be presenting via Adobe Connect for the Nashville Flash Platform User Group in May. Here is some additional information about the presentation. RobotLegs is an IoC framework that&#8217;s been rising on the Flex framework scene. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin-top: 5px; margin-bottom: 5px; margin-left: 10px; margin-right: 10px;" src="http://seantheflexguy.com/images/sean-moore-robot-legs-350.jpg" alt="" width="150" height="150" />I&#8217;ll be presenting at the Denver Flex User&#8217;s Group on July 15th on RobotLegs. In addition I should also be presenting via Adobe Connect for the Nashville Flash Platform User Group in May. Here is some additional information about the presentation.</p>
<p>RobotLegs is an IoC framework that&#8217;s been rising on the Flex framework scene. It&#8217;s a pure AS3 microarchitecture so it can be used in non-Flex projects as well. One thing that I like about the framework is that it does a pretty good job of telling you what&#8217;s wrong when you&#8217;re building your app. For example it&#8217;ll let you know if you&#8217;ve missed adding a class to the context. In this presentation I&#8217;ll show you how to set up a Flex app from the ground up using RobotLegs. In addition I&#8217;ll show you how to set up Flex Unit with RobotLets so that you can write unit tests or do test driven development for your project. I&#8217;ve worked with several Flex frameworks and RobotLegs is one of my favorites so far. This will be more of a live coding session than a theoretical talk about IoC. In this session you&#8217;ll learn how to set up your package structure, create a context, create a central data model, map events to commands, create and communicate with services, set up your views and use mediators as backing classes that will contain the ActionScript for them. I&#8217;ll also share a technique that I&#8217;ve been using that splits the context up so there isn&#8217;t one giant class to manage.</p>
<p>More information about the July preso can be found here:</p>
<p><a href="http://ria5280.org/calendar/event/2010/7/15/178056">http://ria5280.org/calendar/event/2010/7/15/178056</a></p>
]]></content:encoded>
			<wfw:commentRss>http://seantheflexguy.com/blog/2010/03/20/robotlegs-as3-framework-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Spring Example Project</title>
		<link>http://seantheflexguy.com/blog/2009/02/25/simple-spring-example-project/</link>
		<comments>http://seantheflexguy.com/blog/2009/02/25/simple-spring-example-project/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 17:54:29 +0000</pubDate>
		<dc:creator>seantheflexguy</dc:creator>
				<category><![CDATA[Aspect Oriented Programming]]></category>
		<category><![CDATA[Inversion Of Control]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://seantheflexguy.com/blog/?p=289</guid>
		<description><![CDATA[The Spring framework is not new, it&#8217;s been around since mid 2003. In very simple terms Spring is a framework to help build Java (and .NET) applications. Spring helps organize and orchestrate the source code for Java applications. Spring can be used with any Java application including Java web applications. This is beneficial to Flex [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.seantheflexguy.com/images/blog/spring-logo.jpg" alt="" width="275" height="103" />The <a href="http://www.springsource.org/" target="_blank">Spring framework</a> is not new, it&#8217;s been around since mid 2003. In very simple terms Spring is a framework to help build Java (and .NET) applications. Spring helps organize and orchestrate the source code for Java applications. Spring can be used with any Java application including Java web applications.<br />
This is beneficial to Flex applications that communicate with server side Java web applications. In addition, Flex developers can now use the <a href="http://www.springsource.org/spring-flex" target="_blank">new Spring BlazeDS Integration </a>provided by Spring with BlazeDS projects. Check out the awesome <a href="http://coenraets.org/blog/2009/01/new-springblazeds-integration-test-drive/" target="_blank">blog post</a> and <a href="http://coenraets.org/blog/2009/02/spring-blazeds-integration-on-adobe-tv/" target="_blank">video</a> by <a href="http://coenraets.org/" target="_blank">Christophe Coenraets</a> for a walk through of the Spring BlazeDS Integration. His <a href="http://coenraets.org/downloads/spring-flex-testdrive.zip" target="_blank">example project</a> should get you up and running pretty quickly.</p>
<p>After reviewing the example that Chris provided I wanted to take things s step further and integrate Hibernate and MySQL into the project. I wrestled with the JAR&#8217;s, the classpath, the Spring and Hibernate XML markup, and the Hibernate Annotations for a while and then realized that I needed to get a firm understanding of some Spring fundamentals. <a href="http://www.manning.com/walls3/" target="_blank">Manning&#8217;s Spring in Action</a> was recommended by a colleague and so far has been really shedding some light.</p>
<p>I was able to create a simple Spring project (no Flex, no BlazeDS, no Hibernate&#8230; yet) to help me understand some of the core Spring concepts. The IoC Container and AOP are two very important pieces of the Spring framework. This very simple project only utilizes the <a href="http://www.devshed.com/c/a/Java/The-Spring-Framework-Understanding-IoC/" target="_blank">IoC Container</a>. <a href="http://en.wikipedia.org/wiki/Aspect-oriented_programming" target="_blank">Aspect Oriented Programming</a> is very cool and I also recommend checking it out. AOP is not covered in this example. (Check out <a href="http://en.wikipedia.org/wiki/Cross-cutting_concern" target="_blank">cross cutting concerns</a>.)</p>
<p>There is a simple <a href="http://ant.apache.org/" target="_blank">Ant </a>task to compile, jar and run the application. You&#8217;ll also need the latest version of the JDK for this application.</p>
<p>You can download the project using a Subversion client using the following URL:</p>
<p>http://seantheflexguy.com/applicationcontextex/</p>
<p>You can also download a zipped version of the project here:<a href="http://seantheflexguy.com/java/ApplicationContextExample.zip"></p>
<p>http://seantheflexguy.com/java/ApplicationContextExample.zip</a></p>
<p>To run the project navigate to the directory where you downloaded the project, and extracted if you grabbed the zip. Then from the project root using a Terminal or Command Prompt issue the command: ant to compile and: ant run to run the application.</p>
<p>The first version of the application used a <a href="http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/beans/factory/BeanFactory.html" target="_blank">BeanFactory</a>. This second version uses the <a href="http://static.springframework.org/spring/docs/2.0.x/api/org/springframework/context/ApplicationContext.html" target="_blank">ApplicationContext</a> class instead. BeanFactory is in Spring&#8217;s core module, it’s the main Spring container that provides DI. The ApplicationContext module builds on BeanFactory providing additional capabilities such as: internationalization and validation support and access to the application event lifecycle.</p>
<p>The Simple Spring Example Project should help you understand the most basic level Spring mechanics. The only JARs required by the project are spring.jar and the commons-logging-1.1.1.jar, both are included with the project. The Ant build file will set the CLASSPATH for these JARs, if you bypass Ant make sure to set these on the CLASSPATH prior to compiling the application.</p>
<p>So far Spring really looks like a powerful way to organize and manage Java application development. You should take a moment to check it out. Also be sure to check out the <a href="http://www.springsource.org/spring-flex" target="_blank">Spring BlazeDS Integration</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://seantheflexguy.com/blog/2009/02/25/simple-spring-example-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
