<?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>ryan norris &#187; Enterprise Architecture</title>
	<atom:link href="http://www.ryannorris.com/category/enterprise-architecture/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryannorris.com</link>
	<description>managing software teams and delivering great results</description>
	<lastBuildDate>Fri, 25 Jun 2010 13:44:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>A Simple GWT Validation Framework Using Great Design Patterns and MVP</title>
		<link>http://www.ryannorris.com/2009/11/27/validation-in-gwt-with-mvp-and-patterns/</link>
		<comments>http://www.ryannorris.com/2009/11/27/validation-in-gwt-with-mvp-and-patterns/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 13:51:08 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[GWT]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[google web toolkit]]></category>
		<category><![CDATA[mvp]]></category>
		<category><![CDATA[ria]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=113</guid>
		<description><![CDATA[I&#8217;ve been writing a bit about Google Web Toolkit lately. It undeniably is disrupting traditional browser-based RIA development. But it does lack some features out of the box that most developers have grown accustomed to from frameworks like Flex and Ext. Field validation is one such feature. While the gwt-validation project exists to solve this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing a bit about Google Web Toolkit lately.  It undeniably is disrupting traditional browser-based RIA development.  But it does lack some features out of the box that most developers have grown accustomed to from frameworks like Flex and Ext.  Field validation is one such feature.  While the gwt-validation project exists to solve this very problem, an approach leveraging a good chunk of the existing GWT infrastructure can give you a robust, test-driven, and MVP-friendly approach for validation.<span id="more-113"></span></p>
<p>To get started, let&#8217;s break down our validation needs along the standard lines that we see in frameworks today.  Widgets need to be able to be <em>Validatable</em>.  That is to say, Widgets must be able to be externally seen as having the capability to execute logic which validates their current state.  In my approach, I&#8217;ve chosen to <em>strategize</em> my widgets rather than visit them in order to validate their data.  This decision is largely to enforce contract-driven development and ensure a high level of testability.</p>
<p><strong>Validatable</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> Validatable <span style="color: #009900;">&#123;</span>
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Execute validation on the implementing component
	 *
	 * @return true if validation succeeded, false if validation failed
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> validate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>We also now need an interface that will provide the rules for how validation logic should occur.  Something that is <em>Validatable </em>should be able to validate itself with multiple sets of rules.  Our <strong>Validator</strong> interface gives us this flexible cardinality, and has a familiar ring to it.</p>
<p><strong>Validator</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> Validator <span style="color: #009900;">&#123;</span>
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Execute the implemented validation logic
	 *
	 * @return true if validation succeeded, false otherwise
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> validate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Yes, these two interfaces are the same besides their name.  They are both command interfaces, allowing us to abstract logic behind a single method that we can cope with polymorphically.  The idea remember is that <em>Validatable</em> components can re-use many different <em>Validator</em> implementations.</p>
<p>So let&#8217;s write a simple <em>Validator </em>and <em>Validatable </em>interface.  In this case, we&#8217;ll be validating date input.</p>
<p><strong>DateFormatValidator</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.validator</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.i18n.client.DateTimeFormat</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.user.client.ui.HasValue</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.Validator</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> DateFormatValidator <span style="color: #000000; font-weight: bold;">implements</span> Validator <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">private</span> HasValue<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>String<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> _value<span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">private</span> DateTimeFormat _format<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Create a validator that will verify that the given string is compliant
	 * with the pattern
	 *
	 * @param format
	 *            The format to validate against, per the specification in
	 *            {@link DateTimeFormat}
	 * @param value
	 *            The value to validate
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> DateFormatValidator<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span> pattern, HasValue<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>String<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> value<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		_format <span style="color: #339933;">=</span> DateTimeFormat.<span style="color: #006633;">getFormat</span><span style="color: #009900;">&#40;</span>pattern<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Set the value to be validated
	 *
	 * @param value a string, nominally representing a date
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> setValue<span style="color: #009900;">&#40;</span>HasValue<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>String<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> value<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		_value <span style="color: #339933;">=</span> value<span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">/*
	 * (non-Javadoc)
	 *
	 * @see com.ryannorris.gwt.validation.client.Validator#validate()
	 */</span>
	@Override
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> validate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
			_format.<span style="color: #006633;">parse</span><span style="color: #009900;">&#40;</span>_value.<span style="color: #006633;">getValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">IllegalArgumentException</span> e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #666666; font-style: italic;">// the value couldn't be parsed by the pattern, return false</span>
			<span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">false</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>So, now I have a <em>Validator. </em>How do I now make a widget, let&#8217;s say a simple TextBox, <em>Validatable?</em></p>
<p>Harkon back earlier when I said I was chosing to <em>strategize</em> my Widgets.  That&#8217;s only partially true.  Because we&#8217;re aiming for good TDD, and hence we want to rely on dependency injection &#8211; we will in fact be decorating them as well.  We will <em>strategize </em>around their ability to be validated, while we will <em>decorate </em>them with the <em>Validators</em> that interest us.  This is important, as we wouldn&#8217;t want to have 20 different TextBox implementations that handle various <em>Validation</em> permutations.  We would rather one, <em>decoratable</em> TextBox that can be managed by the presenter in our MVP implementation.  So what does our initial stab at a <em>ValidatableTextBox </em>look like?</p>
<p><strong>ValidatableTextBox</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.widget</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.user.client.ui.TextBox</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.Validatable</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.validator.DateFormatValidator</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> ValidatableTextBox <span style="color: #000000; font-weight: bold;">extends</span> TextBox <span style="color: #000000; font-weight: bold;">implements</span> Validatable <span style="color: #009900;">&#123;</span>
&nbsp;
	@Override
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> validate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		DateFormatValidator validator <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> DateFormatValidator<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;mm/DD/yyyy&quot;</span>,
				getText<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">return</span> validator.<span style="color: #006633;">validate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Wait, you say.  <em>This isn&#8217;t at all what you just described!  This is a text box that will only execute one validator for one date pattern! </em>Well, you&#8217;re right.  We need to find a way to enable decoration of our TextBox in a way that can be nicely tested and extensible.  GWT makes extensive use of decorator pattern, and really strives for testability.  We see this in the various <em>Has</em> interfaces, which are added to classes to give them additional behaviors (such as <em>HasText </em>or <em>HasClickHandler</em>).  So, we will follow suit and create our decorator interface <em>HasValidators.</em></p>
<p><strong>HasValidators</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> HasValidators <span style="color: #009900;">&#123;</span>
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Add a validator to the decorated component
	 *
	 * @param validator The validator to be added
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> addValidator<span style="color: #009900;">&#40;</span>Validator validator<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And now our updated <em>ValidatableTextBox.</em></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.widget</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.util.Set</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.user.client.ui.TextBox</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.HasValidators</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.Validatable</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.Validator</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> ValidatableTextBox <span style="color: #000000; font-weight: bold;">extends</span> TextBox <span style="color: #000000; font-weight: bold;">implements</span> Validatable, HasValidators <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">private</span> <span style="color: #003399;">Set</span> _validators<span style="color: #339933;">;</span>
&nbsp;
	@Override
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> addValidator<span style="color: #009900;">&#40;</span>Validator validator<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		_validators.<span style="color: #006633;">add</span><span style="color: #009900;">&#40;</span>validator<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	@Override
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> validate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">boolean</span> valid <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span>Validator validator <span style="color: #339933;">:</span> _validators<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span> validator.<span style="color: #006633;">validate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				valid <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">false</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">return</span> valid<span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>So, that&#8217;s pretty sweet. I have a collection of <em>Validators</em> as a member of the component &#8211; in fact I have a set of them as to ensure no <em>Validator</em> exists more than once on the component.  My <em>validate</em> method now loops through the set of validators and maintains the local state of the validation, allowing the entire validation to fail if any one <em>Validator</em> fails.</p>
<p>A highly testable <em>passive view</em> implementation with this component may look something like:</p>
<p><strong>MySampleValidatableView</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * 
 */</span>
<span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.event.dom.client.HasKeyPressHandlers</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.user.client.ui.HasValue</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #008000; font-style: italic; font-weight: bold;">/**
 * @author ryan
 * 
 */</span>
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> MySampleValidatableView <span style="color: #009900;">&#123;</span>
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Get the {@link HasValidators} behavior of the date box.
	 * 
	 * @return a {@link HasValidators} behavior
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> HasValidators getDateValidators<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Get the {@link Validatable} behavior of the date box.
	 * 
	 * @return a {@link Validatable} behavior
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> Validatable getDateValidatable<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Return the {@link HasValue} behavior of the date box. This allows us to
	 * access the value of the control.
	 * 
	 * @return a {@link HasValue} behavior
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> HasValue<span style="color: #339933;">&lt;</span>String<span style="color: #339933;">&gt;</span> getDate<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Return the {@link HasKeyPressHandlers} behavior of the date box. When the
	 * user types a key in the field, we will use this event to validate the
	 * current value;
	 * 
	 * @return
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> HasKeyPressHandlers getDateKeyUp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #008000; font-style: italic; font-weight: bold;">/**
	 * Toggle the visual state of the date box so the user receives feedback
	 * when their date is valid
	 * 
	 * @param valid
	 *            Whether or not the control should reflect a valid date entry
	 *            (true) or an invalid one (false)
	 */</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> toggleValidDateBox<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">boolean</span> valid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>A lot going on here, and it&#8217;s seems verbose &#8211; but it&#8217;s not, it&#8217;s just highly testable!  We need to be able to access the various behaviors of our text box so that we can test how our presenter<em> collaborates </em>with these behaviors.  We also need to be able to push the passive display functionality back to our view implementation so that our unit tests don&#8217;t inadvertently require a hosted environment to run.  So our presenter needs to be built to:</p>
<ol>
<li>Create a <em>DateFormatValidator</em> with the appropriate pattern and a reference to the component holding the text value to validate;</li>
<li><em>Decorate</em> the component in the view through the <em>HasValidators</em> behavior;</li>
<li>Execute validation whenever the user changes the value of the widget through the <em>HasKeyPressHandlers</em> interface;</li>
<li>Alter the visual display of the component by calling the <em>toggleValidDateBox</em> method.</li>
</ol>
<p>So last but not least, our presenter:</p>
<p><strong>MySamplePresenter</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">package</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.event.dom.client.KeyPressEvent</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.google.gwt.event.dom.client.KeyPressHandler</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">com.ryannorris.gwt.validation.client.validator.DateFormatValidator</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> MySamplePresenter <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> MySamplePresenter<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">final</span> MySampleValidatableView view<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		DateFormatValidator validator <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> DateFormatValidator<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;mm/DD/yyyy&quot;</span>,
				view.<span style="color: #006633;">getDate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		view.<span style="color: #006633;">getDateValidators</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">addValidator</span><span style="color: #009900;">&#40;</span>validator<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		view.<span style="color: #006633;">getDateKeyUp</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">addKeyPressHandler</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> KeyPressHandler<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
			@Override
			<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> onKeyPress<span style="color: #009900;">&#40;</span>KeyPressEvent event<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				view.<span style="color: #006633;">toggleValidDateBox</span><span style="color: #009900;">&#40;</span>view.<span style="color: #006633;">getDateValidatable</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">validate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>So there you have it &#8211; a highly testable base for validation in a GWT application using MVP.</p>
<p>In my next post, I&#8217;ll add an event framework to validation, allowing asynchronous validation and abstraction between overall error handling and validation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/11/27/validation-in-gwt-with-mvp-and-patterns/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>An Omniscient Learning Approach to Mock-based TDD</title>
		<link>http://www.ryannorris.com/2009/04/16/an-omniscient-learning-approach-to-mock-based-tdd/</link>
		<comments>http://www.ryannorris.com/2009/04/16/an-omniscient-learning-approach-to-mock-based-tdd/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 03:29:31 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Building Better Software]]></category>
		<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Services as Software]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=69</guid>
		<description><![CDATA[I recently posted about why I think mocks are simply the easiest way to get the most bang for your buck in automated software testing.  But integrating it as part of a process is hard, and teaching it is even harder.  Young developers seem to have a hard time grasping the idea of testing isolated [...]]]></description>
			<content:encoded><![CDATA[<p>I recently posted about why I think mocks are simply the easiest way to get the most bang for your buck in automated software testing.  But integrating it as part of a process is hard, and teaching it is even harder.  Young developers seem to have a hard time grasping the idea of testing isolated units of code.  I&#8217;ll confess &#8211; for a long time, much of my unit testing involved setting up the appropriate test environments &#8211; Spring containers for persistence units, test databases, you name it.  It&#8217;s expensive to test this way, and there are only so many situations when integration tests are valuable.  On lean, agile teams &#8211; code coverage isn&#8217;t held in as high regard as having working software.  On lean, agile teams &#8211; tests are a driver towards design, but they do need to be rooted in some level of initial thought on how a problem needs to be solved.</p>
<p><span id="more-69"></span></p>
<p>So understanding how a unit test is traceable back to a technical design on an agile team is really a key differentiation between an approach that more closely resembles cowboy coding and an approach which is relatively holistic.  No scrum master, project manager, or even architect would advocate full designs in an agile environment &#8211; instead we opt for lighter weight approaches to technical design that provide a blueprint to the code.  For many teams, this is a CRC card &#8211; a simply way of documenting the various dimensions of an object-oriented unit.</p>
<p>What is a CRC, and how does it relate back to tests?</p>
<p><strong>Class</strong></p>
<p>The core unit of code that we will refer to is the class, but this can be really any aggregation &#8211; a function library even.  This represents a loose collection of related functionality that leverages common resources, represents a concept of actions or identity, or extends existing functionality.</p>
<p><strong>Responsibilities</strong></p>
<p>The responsibilities of the class form it&#8217;s <em>raison d&#8217;etre. </em>Commonly, we can analogize responsibilities with methods, but they may be more coarse grained &#8211; and our refactoring may indeed refine the level of detail with which we understand the functional responsibilities of the class.</p>
<p><strong>Collaborators</strong></p>
<p>From an interestingness perspective, particularly in the context of unit testing and mocking (or stubbing), collaborators really take the cake.  When we talk about <em>dependency injection</em> as the core pattern of test-driven development with mocks, collaborators are indeed what we are injecting into our class to power it.</p>
<p>I always ask my green developers to think about these things before starting any sort of development.  Once their CRC is done and we agree on the approach, I ask them to build the programming interface, stub the implementation, and then start writing tests.  A common example I like to use when I get that befuddled look is the idea of a car.  A car has a lot of complex stuff going on that if I needed to test dependent functions of the car against, I wouldn&#8217;t want to have to concoct all of the function they provide.  For instance, the engine is a complex piece of machinery &#8211; but if I solely want to to test how my transmission reacts to engine behavior &#8211; it&#8217;s the transmission class I want to ultimately test, and it&#8217;s reactions to different engine behavior.</p>
<p>Let&#8217;s bring it up a level and talk about a Car as the core class.  We want our car to be able to do two things &#8211; to have two <em>responsibilities</em>: accelerate and stop.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> Car <span style="color: #009900;">&#123;</span>
   <span style="color: #000066; font-weight: bold;">int</span> accelerate<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> additionalVelocity<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #000066; font-weight: bold;">void</span> setTireGrip<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> gripFactor<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #000066; font-weight: bold;">int</span> stop<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> overDistance<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> CannotStopException<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> Motorable <span style="color: #009900;">&#123;</span>
   <span style="color: #000066; font-weight: bold;">int</span> injectGasoline<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> mlOfFuel<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> Stoppable <span style="color: #009900;">&#123;</span>
   <span style="color: #000066; font-weight: bold;">int</span> applyBrakes<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> PadException, RotorException, WetRoadException<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>So we&#8217;ve defined 3 interfaces.  Let&#8217;s say that I&#8217;m really interested in a case where I test how the car reacts to different stopping conditions.  Now, I&#8217;m demonstrating this in Java, so I&#8217;ll use syntax similar to Mockito &#8211; but the rules are the same:  I&#8217;m interested in testing the requirements of the car <em>observing the expected behavior of the brakes in those conditions</em>.  When the grip is set low, we expect the braking system to respond negatively and lock up.</p>
<p>We&#8217;ll also assume for now that I&#8217;ve stubbed out a skeletal implementation of the Car interface (meaning that everything throws a NotImplementedException for the time being).</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">@Test
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> testWetRoadConditionsWithLowFriction<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
   <span style="color: #666666; font-style: italic;">// arrange</span>
   Stoppable s <span style="color: #339933;">=</span> mock<span style="color: #009900;">&#40;</span>Stoppable.<span style="color: #000000; font-weight: bold;">class</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   Motorable m <span style="color: #339933;">=</span> mock<span style="color: #009900;">&#40;</span>Motorable.<span style="color: #000000; font-weight: bold;">class</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   Car c <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> CarImpl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   c.<span style="color: #006633;">setStopAbility</span><span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   c.<span style="color: #006633;">setMotor</span><span style="color: #009900;">&#40;</span>m<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   c.<span style="color: #006633;">setGripFactor</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   when<span style="color: #009900;">&#40;</span>s.<span style="color: #006633;">applyBrakes</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">thenThrow</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> WetRoadException<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">// act and assert - no real assertion, we're expecting an exception</span>
      c.<span style="color: #006633;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      fail<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Should have seen a CannotStopException - there's not a lot of grip for road when road conditions are wet&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span><span style="color: #009900;">&#40;</span>CannotStopException e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">// do nothing, we're a success!</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>As you can see, we&#8217;re not actually testing the brakes &#8211; we&#8217;re testing that under the given conditions that when the Stoppable interface throws an exception that prevents our car from stopping successfully that we are throw our own CannotStopException in response.  The stoppable interface is a <em>collaborator</em>; we are not interested in this case in unit testing it, we are interested in asuming a known behavior from it, and testing how the stop() ability of the Car implementation reacts to the WetRoadException that we have stubbed.</p>
<p>The alternative in the past would have been to actually create the implementation of Stoppable.  But having to unit test both items makes it difficult to isolate implementation issues.</p>
<p>So ultimately young developers, your unit tests need to test a single responsibility and not the responsibility of your collaborators.  You may eventually test how the two implementations interact &#8211; that is an integration test.  Ultimately though, there is more value in testing each individual unit and ensuring that the code is built to the spec of your lightweight design.  Then you can isolate integration issues and write tests that specifically address finding integration problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/04/16/an-omniscient-learning-approach-to-mock-based-tdd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piling on Praise for Apache Wicket</title>
		<link>http://www.ryannorris.com/2009/04/13/piling-on-praise-for-apache-wicket/</link>
		<comments>http://www.ryannorris.com/2009/04/13/piling-on-praise-for-apache-wicket/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 12:20:57 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Building Better Software]]></category>
		<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[wicket]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=66</guid>
		<description><![CDATA[I think someone finally got a web framework for Java right. While I&#8217;m still yet to try on some of the AJAX support &#8211; something that makes or breaks a web framework these days &#8211; Wicket&#8216;s clear separation of concerns and robust architecture for MVP (right, &#8216;P&#8217;, as in Model-View-Presenter) has really impressed me.  Generally [...]]]></description>
			<content:encoded><![CDATA[<p>I <strong>think </strong>someone finally got a web framework for Java right.</p>
<p>While I&#8217;m still yet to try on some of the AJAX support &#8211; something that makes or breaks a web framework these days &#8211; <a title="Wicket" href="http://wicket.apache.org" target="_blank">Wicket</a>&#8216;s clear separation of concerns and robust architecture for MV<em>P</em> (right, &#8216;P&#8217;, as in Model-View-Presenter) has really impressed me.  Generally speaking, I have not been one to embrace convention over configuration in frameworks like RoR, simply because it seems non-scalable.  But given it&#8217;s pure focus on UI and it&#8217;s total flexibility to do whatever the hell I want with my middle tier, I&#8217;m feeling that when restricted to the presentation layer &#8211; the paradigm works.  Wicket is pretty programmer-centric, so unlike RoR, you&#8217;re not going to get off the ground without some skills or a scaffolding framework like <em>Wicketopia</em>, but I&#8217;m not at all convinced this isn&#8217;t a bad thing.</p>
<p>There are a couple of things that I could get enthusiastic with around Wicket, were someone &#8211; including myself &#8211; to improve them.</p>
<ol>
<li><strong>Documentation. </strong>Look, I hate documenting things as much as the next guy &#8211; but in as much as I&#8217;ve enjoyed the fruits of my labor in Wicket, I have not enjoyed chasing down information to all ends of the globe.  I love the fact that this is working software, and the curve isn&#8217;t too steep &#8211; but try finding stuff on form validation, or the entire concept of mounting URL paths.</li>
<li><strong>Callbacks, anyone? </strong>So, forms in Wicket generally appear to be processed by the <strong>onSubmit()</strong> method of the Form class.  You override this in your child class of form.  This is the very object-oriented way of doing things, but it seems a touch limiting out of the box to not be able to register callbacks on this method.  My <strong>Form</strong> class exists so that I can have more than one of these per page, no doubt (take <em>THAT</em> ASP.NET), but I still think that I&#8217;d like to be able to actually register callback handlers as I wish in each <strong>Page</strong>, thus allowing Forms to have different behaviors dependent on where they are used.  I&#8217;m pretty sure this isn&#8217;t the 80% use case, but I still am left with only one alternative out of the box, and that&#8217;s to keep extending the class hierarchy.  It&#8217;s nice to embrace strategy pattern and all, but to me this is where we really need an observer.
<p>So I was able to fudge this myself by creating a <strong>FormSubmitListener </strong>interface, subclass <strong>Form </strong>and implement it&#8217;s <strong>onSubmit()</strong> to call the <strong>formSubmitted()</strong><em> </em>method from my new interface, it&#8217;s own implementation registered through the constructor on my <strong>Form</strong> subclass &#8211; but I think in an MVP or MVC framework, I still would like the ability to use OOP to handle the quirks of the page lifecycle (yeah, yeah &#8211; Wicket is unmanaged), but allow observers to actually handle pseudo-user events.</li>
</ol>
<p>These two things aside, I feel pretty at peace with Wicket as my web framework for Java projects going forward (sorry Seam).</p>
<p>Another note &#8211; I&#8217;m really interested in the possibilities of packaging all of the resources for the web project in the JAR file.  While WAR&#8217;s are fine for deployment, JAR&#8217;s make the application open for truly modular design.</p>
<p>Now to refresh my memory on getting JTA running in a pure servlet container&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/04/13/piling-on-praise-for-apache-wicket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mocks &#8211; the only thing separating complex TDD from value-added TDD</title>
		<link>http://www.ryannorris.com/2009/04/08/mocks-the-only-thing-separating-complex-tdd-from-value-added-tdd/</link>
		<comments>http://www.ryannorris.com/2009/04/08/mocks-the-only-thing-separating-complex-tdd-from-value-added-tdd/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 03:18:05 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Building Better Software]]></category>
		<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[integration testing]]></category>
		<category><![CDATA[mockito]]></category>
		<category><![CDATA[rhinomocks]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=64</guid>
		<description><![CDATA[About two years back when I started getting completely fascist about test-driven development, the complexity was always &#8220;gee, i have an application container and I need to involve it in my unit tests so that I can get full test coverage !!111oneeleventy.&#8221; This typically meant providing a real collaborator, like a PersistenceUnit in Java, so [...]]]></description>
			<content:encoded><![CDATA[<p>About two years back when I started getting completely fascist about test-driven development, the complexity was always &#8220;gee, i have an application container and I need to involve it in my unit tests so that I can get full test coverage !!111oneeleventy.&#8221;</p>
<p>This typically meant providing a real <em>collaborator</em>, like a PersistenceUnit in Java, so that I could test trivial operations like persisting an entity.  At the time, I challenged a manager on this:</p>
<p><em>What are we really testing?  Are we testing OUR requirement, or are we testing something we should reasonably expect Hibernate to do on the basis of our initial technology selection?</em></p>
<p>Code coverage I believe is pretty overrated.  No one cares whether or not you can prove your method to persist an entity works <strong>because the developers of Hibernate/TopLink/LINQ to SQL have already proved this through their unit tests. </strong>What you are building when you write a test that actually checks the database to see if <em>your middleware </em>used a pre-packaged <em>object-relational manpping framework</em> correctly is an integration test.  There&#8217;s certainly value to integration testing with data access layers, particularly when difficult to test components of your middleware (like stored procedures and triggers) are involved.  Saving that however, the focus of test-driven development &#8211; namely unit tests, should be on the business logic that is proprietary to your applicatiom, be it the front-end or the middle tier.</p>
<p>Now, suffice to say that to a good number of developers and architects this isn&#8217;t news, but if you really want to <em>isolate</em> the code which you wrote that is specific to your business rules and requirements &#8211; <strong>mocking frameworks</strong> are the way to go.  Particularly in an Agile project where we can readily identify certain injected dependencies (like an EntityManager, for example) as a <em>collaborator </em>of the class under test, your unit test is really interested in asking the question <em>based on this interaction with this external component, how should I expect my logic to react?</em></p>
<p>In these scenarios of course, I mock or stub the <em>EntityManager</em>.  In the past, a fool like me would have tried to load a container within my unit test environment.  This is actually an integration test, in addition to the fact that it is costly and doesn&#8217;t add the value a truly isolated unit test which focuses on the code <em>you wrote</em> does.</p>
<p>In .Net, <a title="RhinoMocks" href="http://ayende.com/projects/rhino-mocks.aspx" target="_blank">RhinoMocks</a> is scalding hot with it&#8217;s supprt for mocking through lambda&#8217;s.  In JEE, I&#8217;ve fallen in love with <a title="Mockito" href="http://mockito.org/" target="_self">Mockito</a>.</p>
<p>So, stop worrying about how you can get JBoss running so that your CI environment can execute inside of it.  Instead, use mocks to give your code the resources it needs to vet out the conditions in your own code that you want to test.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/04/08/mocks-the-only-thing-separating-complex-tdd-from-value-added-tdd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Diving back into Java, and liking it (mostly)</title>
		<link>http://www.ryannorris.com/2009/04/08/diving-back-into-java-and-liking-it-mostly/</link>
		<comments>http://www.ryannorris.com/2009/04/08/diving-back-into-java-and-liking-it-mostly/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 15:53:14 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Building Better Software]]></category>
		<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jpa]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[wicket]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=60</guid>
		<description><![CDATA[So for various reasons, I&#8217;ve pulled Eclipse Ganymede down and decided to check in on where Java has gone during my year-long mental hiatus in Redmond.  I have certain biases now from the land of .Net, and god help the Java world if it angers me after seeing the things I&#8217;ve seen in the last [...]]]></description>
			<content:encoded><![CDATA[<p>So for various reasons, I&#8217;ve pulled Eclipse Ganymede down and decided to check in on where Java has gone during my year-long mental hiatus in Redmond.  I have certain biases now from the land of .Net, and god help the Java world if it angers me after seeing the things I&#8217;ve seen in the last year.</p>
<p>All in all, I&#8217;m very pleased.</p>
<p><strong>The m2eclipse plugin is marvelous, finally.</strong></p>
<p>The day has finally come where I&#8217;m no longer fighting <a title="Eclipse" href="http://www.eclipse.org" target="_blank">Eclipse</a> to build projects using <a title="Maven" href="http://maven.apache.org" target="_blank">Maven</a>, as it should be.  Maven ties far too many niceties of the world together, and to not have it as the underlying, portable build tool within the IDE has always frustrated me.  The ability to quickly start a new Maven project, apply an archetype and go is fantastic.  The fact that it doesn&#8217;t require special jazz to get a WTP project up and running is even better.</p>
<p><strong>Hey look, working with my database and some JPA implementation is really easy!</strong></p>
<p>&#8230;well, almost easy.  I created a project for my middleware just using the quickstart archetype.  I was just going to throw Spring on top of it and avoid spoiling the good experience so far with EJB insanity.  The next thing I wanted to do was load up my database tables as ORM classes via Hibernate.</p>
<p>For whatever reason, this was cool on my Mac.  Project Properties&#8230;JPA Tools&#8230;Generate entities.  This is somehow not the way to do it over in windows.  So instead I tried to add JPA as a project facet.</p>
<p>My first problem was that I didn&#8217;t have Hibernate set up as my default JPA provider.  Unfortunately, you can only do this through the Maven-managed dependencies.  It has to be an Eclipse user library.  So I download the Entity Manager and wire it up into Eclipse.  Add the Java Facet (somehow <strong>not a default</strong>, probably Maven&#8217;s fault), added the JPA Facet (and am told I need to add the Utility Facet, so I do that).</p>
<p><em>Further configuration required.</em></p>
<p>Ok.  So I click into this further configuration and it reasonably wants to know how I connect to the database.  Fair enough.  I do all this, and it still won&#8217;t let me apply the change.</p>
<p>Eventually, it appears you need to add the Java project facet <em>first</em>, and then and only then can I reopen the properties page and apply the JPA facet.  A frustration point, but I figured it out.</p>
<p><strong>Hey, nothing special to get a project with the Wicket archetype running in WTP.</strong></p>
<p>I start a separate web project and use the <a title="Wicket" href="http://wicket.apache.org" target="_blank">Wicket </a>archetype, interested in tackling what looks to be a nice, lightweight UI package for Java (though it looks like <a title="Spring Framework" href="http://www.springframework.org" target="_blank">Spring </a>integration isn&#8217;t trivial &#8211; which is basically unacceptable these days).  I start the project, I add a server configuration, and deploy&#8230;</p>
<p><em>Holy crap, it works out of the box!</em></p>
<p>I have a ways to go, but things feel more turnkey with Eclipse than I&#8217;ve ever experienced.  I did up some JUnits with Mockito, and that was easy, indicating that if I were to set up Cruise or some other CI tool, I could quickly get going with a full Agile project.  Exciting stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/04/08/diving-back-into-java-and-liking-it-mostly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Java Still Has Some Respect</title>
		<link>http://www.ryannorris.com/2009/02/10/java-still-has-some-respect/</link>
		<comments>http://www.ryannorris.com/2009/02/10/java-still-has-some-respect/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 02:32:55 +0000</pubDate>
		<dc:creator>Ryan Norris</dc:creator>
				<category><![CDATA[Enterprise Architecture]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JAX-RS]]></category>
		<category><![CDATA[JEE]]></category>

		<guid isPermaLink="false">http://www.ryannorris.com/?p=44</guid>
		<description><![CDATA[Dave Rosenberg thinks Java is boring.  A lot of good things are boring, like automatic transmission.  It doesn't mean there isn't value, and it also doesn't excuse Sun from innovating.]]></description>
			<content:encoded><![CDATA[<p>A colleague sent along a note about how Dave Rosenberg feels that <a title="Sun Doesn't Respect Java" href="http://news.cnet.com/8301-13846_3-10161100-62.html?part=rss&amp;subj=news&amp;tag=2547-1_3-0-5" target="_blank">Sun Doesn&#8217;t Respect Java.</a> As I noted in a <a title="Beautifying Java Weeds" href="http://www.ryannorris.com/2009/02/09/standardizing-organic-java-development/" target="_self">post from yesterday</a>, I think there are some things to like about JAX-RS.  But as a decent JEE architect, I have some thoughts on whether Java actually is exciting anymore.</p>
<ol>
<li>Has Java gotten boring?  If you&#8217;re a web developer, Java has always been like 6AM &#8211; too early to really be interesting, too late to convince you to go back to sleep;</li>
<li>Java&#8217;s middle tier absolutely blows anything else out of the water.  I like LINQ, but comparables like ActiveRecord for RoR or PHPYii simply can&#8217;t do the things that JPA can do;</li>
<li>IoC/DI in Java, open source or JEE, is still better than anything anyone is doing today &#8211; Castle included.</li>
</ol>
<p>Dave points out that the &#8220;write-once, run anywhere&#8221; paradigm may have lost out to virtualization.  Call me when virtualization is native to all of the major OS&#8217;s, Dave.  Until then, the JVM is still the closest thing we have to a platform independent environment.</p>
<p>I&#8217;ve looked at the EE6 spec, and he&#8217;s right though.  Omitting things like Web Beans is certainly a disappointment.  The fact that we still don&#8217;t have great native dependency injection in the EE platform leaves us always falling back upon Spring.  All of these things are rather frustrating.</p>
<p>JavaFX &#8211; just terrible.  Adobe did it right with AIR, even if adoption is seemingly limited to hundreds of Twitter clients.</p>
<p>If Sun wants to start pushing the envelope instead of follwoing the leader &#8211; how about embracing a cloud computing platform through JEE?  JAX-RS is promising, but why not unify the JAX-WS and JAX-RS spec to provide a single platform for all web-based SOA?  At the very least, that would put them on par with WCF.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannorris.com/2009/02/10/java-still-has-some-respect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
