<?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>freestyle developments &#187; Java</title>
	<atom:link href="http://freestyle-developments.co.uk/blog/?cat=90&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://freestyle-developments.co.uk/blog</link>
	<description>Fun, games and coding</description>
	<lastBuildDate>Sun, 16 Jun 2013 07:56:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Integration testing transactions and optimistic locking with Spring and JUnit</title>
		<link>http://freestyle-developments.co.uk/blog/?p=384</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=384#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:27:09 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[concurrency]]></category>
		<category><![CDATA[JUnit]]></category>
		<category><![CDATA[Scala]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=384</guid>
		<description><![CDATA[I did some badness today. I wanted an integration test to check to see if my @Transactional method actually did rollback on an optimistic lock failure. It&#8217;s a pretty business critical method so I wanted to be sure that the &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=384">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=384</wfw:commentRss>
		<slash:comments>13071</slash:comments>
		</item>
		<item>
		<title>So, what the hell happens when you try and save changes to an @Version&#8217;d entity when another thread saves it&#8217;s changes before you?</title>
		<link>http://freestyle-developments.co.uk/blog/?p=374</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=374#comments</comments>
		<pubDate>Fri, 20 Jan 2012 17:31:26 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[concurrency]]></category>
		<category><![CDATA[DAO]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[JPA]]></category>
		<category><![CDATA[locking]]></category>
		<category><![CDATA[transactions]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=374</guid>
		<description><![CDATA[Imagine you&#8217;re setup with a JPA 2 environment, using Spring Data JPA and Hibernate is your JPA vendor. You have a UserRepository interface which extends JpaRepository and therefore a Spring generated userRepository bean for all your user DAO needs. You &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=374">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=374</wfw:commentRss>
		<slash:comments>336</slash:comments>
		</item>
		<item>
		<title>Spring Web Flow &#8211; displaying your JSR-303 validation messages using FreeMarker</title>
		<link>http://freestyle-developments.co.uk/blog/?p=361</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=361#comments</comments>
		<pubDate>Thu, 12 Jan 2012 08:59:35 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[FreeMarker]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[binding]]></category>
		<category><![CDATA[JSR-303]]></category>
		<category><![CDATA[Validation]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=361</guid>
		<description><![CDATA[Instead of creating a custom validator in the traditional sense I&#8217;m relying on JSR-303 annotations to specify validation constraints, because, it is the future, and I shouldn&#8217;t have to do a load of coding to specify common validation requirements like &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=361">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=361</wfw:commentRss>
		<slash:comments>1652</slash:comments>
		</item>
		<item>
		<title>How to switch to/from HTTPS using Apache as a proxy to Tomcat</title>
		<link>http://freestyle-developments.co.uk/blog/?p=339</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=339#comments</comments>
		<pubDate>Sat, 26 Nov 2011 12:57:38 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[mod_proxy]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[mod_ssl]]></category>
		<category><![CDATA[ProxyPass]]></category>
		<category><![CDATA[ProxyPassReverse]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=339</guid>
		<description><![CDATA[I&#8217;m writing this down because it too me an age to figure out a way of doing this. I have a website which Tomcat is happily serving. Areas of the site require a secure connection so I&#8217;m using Spring security &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=339">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=339</wfw:commentRss>
		<slash:comments>11906</slash:comments>
		</item>
		<item>
		<title>Simple FreeMarker random number generator</title>
		<link>http://freestyle-developments.co.uk/blog/?p=327</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=327#comments</comments>
		<pubDate>Sun, 20 Nov 2011 23:03:38 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[FreeMarker]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=327</guid>
		<description><![CDATA[FreeMarker doesn&#8217;t have a random number generator function. I needed a really simple solution that would allow me to pick a random image URL to be displayed on the homepage. &#60;#-- * Generates a "random" integer between min and max &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=327">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=327</wfw:commentRss>
		<slash:comments>816</slash:comments>
		</item>
		<item>
		<title>Java interface and implementation naming (or &#8220;I&#8221; or &#8220;Impl&#8221;)</title>
		<link>http://freestyle-developments.co.uk/blog/?p=322</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=322#comments</comments>
		<pubDate>Sun, 13 Nov 2011 13:52:10 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[Scala]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=322</guid>
		<description><![CDATA[How do I name my interfaces and the classes that implement my interfaces? Through much research on the internet and my own gut feelings, this is what I reckon: I never prefix my interfaces with &#8220;I&#8221;. The value of coding &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=322">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=322</wfw:commentRss>
		<slash:comments>418</slash:comments>
		</item>
		<item>
		<title>Extensions to Spring&#8217;s FreeMarker macro&#8217;s (spring.ftl)</title>
		<link>http://freestyle-developments.co.uk/blog/?p=314</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=314#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:57:14 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[FreeMarker]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=314</guid>
		<description><![CDATA[Spring&#8217;s FreeMarker macro&#8217;s are pretty useful, but there are a couple of things I need from the showErrors macro that simply aren&#8217;t there: Show errors without a HTML tag around them &#8211; if you don&#8217;t specify a classOrStyle, the showErrors &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=314">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=314</wfw:commentRss>
		<slash:comments>23595</slash:comments>
		</item>
		<item>
		<title>Java&#8217;s anonymous classes are subclasses, not instances of the class</title>
		<link>http://freestyle-developments.co.uk/blog/?p=260</link>
		<comments>http://freestyle-developments.co.uk/blog/?p=260#comments</comments>
		<pubDate>Mon, 18 Apr 2011 14:00:48 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://freestyle-developments.co.uk/blog/?p=260</guid>
		<description><![CDATA[More of a note to myself really. Anonymous classes in Java are subclasses. For whatever reason I&#8217;d led myself to believe that anonymous classes in Java are unnamed instances of classes, but they are not, they are subclasses. this.getClass().getSimpleName() returns &#8230; <a href="http://freestyle-developments.co.uk/blog/?p=260">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://freestyle-developments.co.uk/blog/?feed=rss2&#038;p=260</wfw:commentRss>
		<slash:comments>333</slash:comments>
		</item>
	</channel>
</rss>
