<?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>Chris Johnston &#187; J2EE</title>
	<atom:link href="http://www.fuzzylizard.com/archives/category/j2ee/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fuzzylizard.com</link>
	<description>Web development and design with a little VFX thrown in for fun</description>
	<lastBuildDate>Sun, 30 Oct 2011 14:23:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What Java web framework to use?</title>
		<link>http://www.fuzzylizard.com/archives/2007/03/27/874/</link>
		<comments>http://www.fuzzylizard.com/archives/2007/03/27/874/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 04:00:36 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[Application Development]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java Frameworks]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2007/03/27/874/</guid>
		<description><![CDATA[I have a very &#8220;neglected open source project&#8221;:http://code.google.com/p/teamdocs/ that I am going to start working on again. I am going to rewrite it from the ground up using Hibernate and JPA or Hibernate Annotations (I am not quite sure yet), probably Spring, and some web framework. The problem is that I can&#8217;t pick a framework. [...]]]></description>
			<content:encoded><![CDATA[<p>I have a very &#8220;neglected open source project&#8221;:http://code.google.com/p/teamdocs/ that I am going to start working on again. I am going to rewrite it from the ground up using Hibernate and JPA or Hibernate Annotations (I am not quite sure yet), probably Spring, and some web framework. The problem is that I can&#8217;t pick a framework.</p>
<p>I was going to go with &#8220;Wicket&#8221;:http://wicket.sourceforge.net/, but I am not sure I want to go with something that is component based and I can&#8217;t really find any good tutorials. There is suppose to be a book coming out, but I don&#8217;t really want to wait. On the other hand, it is supposed to be fairly easy to learn and fun to work with.</p>
<p>I have also been thinking of using &#8220;Struts 2&#8243;:http://struts.apache.org/2.x/. Yesterday, I found a nice &#8220;120 page tutorial on getting started&#8221;:http://code.google.com/p/sq1-struts2/ with it that would be a huge help. Struts is the 800 pound gorilla when it comes to web frameworks and Struts 2 is suppose to be easier to learn and work with.</p>
<p>Then there is Spring MVC, Tapestry, Echo2, Trails, Stripes, JSF, etc, etc, etc.</p>
<p>Anyone have any suggestions on which one to learn and use? My only requirements are that it be fairly easy to learn, has very good tutorial and documentation support, being actively developed, and is not Struts 1.x, and has some IDE/tool support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2007/03/27/874/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The Problem with EJBs</title>
		<link>http://www.fuzzylizard.com/archives/2006/09/18/795/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/09/18/795/#comments</comments>
		<pubDate>Tue, 19 Sep 2006 00:33:40 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/09/18/795/</guid>
		<description><![CDATA[I had someone post a question in the comments section of my last post on Behavior-Driven Development &#8220;asking about EJBs&#8221;:http://www.fuzzylizard.com/archives/2006/09/15/794/#comments. I thought I would answer it with a new post instead of just a comment. Where do I start? First, I need to define the term EJBs. For me, EJB means either Session Bean (stateless [...]]]></description>
			<content:encoded><![CDATA[<p>I had someone post a question in the comments section of my last post on Behavior-Driven Development &#8220;asking about EJBs&#8221;:http://www.fuzzylizard.com/archives/2006/09/15/794/#comments. I thought I would answer it with a new post instead of just a comment. Where do I start? </p>
<p>First, I need to define the term EJBs. For me, EJB means either Session Bean (stateless or statefull) or Message-Driven Bean. It does not mean Entity Bean. Entity Beans are just wrong and will not be considered further. As far as I can tell, no one really uses them (yes, there are exceptions, but those people are just masochists).</p>
<p>What is the state of Session and Message-Driven Beans? Some people use them, others do not. I personally would advise against them. The vast majority of applications are not distributed, run in a single app server, and can be completely implemented in the web container.</p>
<p>The main problem with EJBS is that they are completely untestable. This is a huge problem. There is no way for me to run a simple JUnit test against a session bean from within an IDE such as NetBeans or Eclipse. In order to test an EJB, I need to build and deploy the entire application inside of the application server. I then need to figure out some artificial way of entering into the app server and executing a method or two on a single bean. Not a fun way of doing development.</p>
<p>In order to do any kind of real development with EJBs you need to abstract all of you business logic out of the bean and place it into POJO that the bean then calls. In order to do this, you need to introduce another interface to ensure that the bean and your business POJO stay in sync. Then, you are able to test the POJO instead of the bean. However, now, in order to implement a bean, we need to not only implement the bean interfaces (local and remote), but also our own interface.</p>
<p>So now, not only is the bean aware of its environment, through having to implement the bean interfaces, but it is also aware of the business rules as well because of our own interface that it implements. So even to test a bean&#8217;s functionality (which eventually does not exist in the bean anyway) we need to jump through hoops. Ugh.</p>
<p>Basically, my personal feeling, and that of many other people, including Sun is that EJBs (at least EJB 2.x) are fundamentally flawed. Thus they were rewritten for EJB 3.0 and the Java Persistence API (JPA).</p>
<p>If you want an excellent article detailing what is wrong with EJBs then check out Bruce Tate&#8217;s &#8220;<em>Don&#8217;t Make Me Eat the Elephant Again</em>&#8220;:http://today.java.net/pub/a/today/2004/06/15/ejb3.html.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/09/18/795/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Porting from JBoss to WebLogic</title>
		<link>http://www.fuzzylizard.com/archives/2006/08/01/755/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/08/01/755/#comments</comments>
		<pubDate>Wed, 02 Aug 2006 03:02:21 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/08/01/755/</guid>
		<description><![CDATA[At work this week, I had to port our application from &#8220;JBoss 4.0.x&#8221;:http://labs.jboss.com/portal/jbossas to &#8220;WebLogic 9.2&#8243;:http://www.bea.com/framework.jsp?CNT=index.htm&#038;FP=/content/products/weblogic. We had attempted to do a port from JBoss to the &#8220;Sun app server&#8221;:http://java.sun.com/javaee/downloads/index.jsp last year and met with total failure. Apparently, the Sun app server is incredibly picky about how certain parts of the J2EE specification is implemented, [...]]]></description>
			<content:encoded><![CDATA[<p>At work this week, I had to port our application from &#8220;JBoss 4.0.x&#8221;:http://labs.jboss.com/portal/jbossas to &#8220;WebLogic 9.2&#8243;:http://www.bea.com/framework.jsp?CNT=index.htm&#038;FP=/content/products/weblogic. We had attempted to do a port from JBoss to the &#8220;Sun app server&#8221;:http://java.sun.com/javaee/downloads/index.jsp last year and met with total failure. Apparently, the Sun app server is incredibly picky about how certain parts of the J2EE specification is implemented, especially JMS. As a result of this, I expected the port to be fairly hard to do.</p>
<p>I was mostly wrong, which was a very nice surprise.</p>
<p>In total, I think I had to change 2 strings, 1 config file, and 1 class. The config file and the class were both related to &#8220;Hibernate&#8221;:http://www.hibernate.org. According to WebLogic, it is not possible to store the Hibernate <code>SessionFactory</code> in JNDI, it has to be cached locally in the <code>HibernateUtil.java</code> class. The 2 strings were related to calling WebLogic&#8217;s default JMS connection factory and remotely accessing an EJB from a stand alone client.</p>
<p>I personally found this to be very cool. It means that it is possible to develop a J2EE application and leave the decision of what app server to use until very near the end of development. It also means that you can develop one application and test deploy it to two servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/08/01/755/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate and c3p0 errors</title>
		<link>http://www.fuzzylizard.com/archives/2006/07/03/741/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/07/03/741/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 02:37:32 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[Application Development]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/07/03/741/</guid>
		<description><![CDATA[I have spent most of the afternoon battling various &#8220;Hibernate&#8221;:http://www.hibernate.org or &#8220;c3p0&#8243;:http://www.mchange.com/projects/c3p0/index.html errors. The biggest was with c3p0. I wanted to change my application over from using Hibernate&#8217;s JDBC connection pooling (which is not for production) to using c3p0. So I added the correct lines to my Hibernate.cfg.xml file and everything broke. I have a [...]]]></description>
			<content:encoded><![CDATA[<p>I have spent most of the afternoon battling various &#8220;Hibernate&#8221;:http://www.hibernate.org or &#8220;c3p0&#8243;:http://www.mchange.com/projects/c3p0/index.html errors. The biggest was with c3p0. </p>
<p>I wanted to change my application over from using Hibernate&#8217;s JDBC connection pooling (which is not for production) to using c3p0. So I added the correct lines to my Hibernate.cfg.xml file and everything broke. I have a JUnit test set up for testing my <code>PersistenceDao</code> class against a real database and not a single test was passing. The problem was that once it came time to run my tests, Hibernate could not open any connections.</p>
<p>I searched Google and found nothing usefull. In the end the solution came from playing around with the config file. I commented out the following line:</p>
<pre>
<property name="hbm2ddl.auto">update</property>
</pre>
<p>And all of my tests started to pass. Cool. I just wish I understand why that one line made such a difference. I am expecting that I will have problems with this down the road. The solution cannot be that simple.</p>
<p>Now the problem that I am trying to fix is that when I run app in Tomcat, the lazy loading isn&#8217;t working. The error message keeps saying that it can&#8217;t create a proxy, even though I have lazy loading turned off. It should be eagerly fetching all of my collections, but it ain&#8217;t. Time to check Google again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/07/03/741/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demystifying Java Security</title>
		<link>http://www.fuzzylizard.com/archives/2006/06/26/736/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/06/26/736/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 21:42:51 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/06/26/736/</guid>
		<description><![CDATA[Here are &#8220;Part 1&#8243;:http://searchappsecurity.techtarget.com/originalContent/0,289142,sid92_gci1195320,00.html and &#8220;Part 2&#8243;:http://searchappsecurity.techtarget.com/originalContent/0,289142,sid92_gci1195332,00.html of an article on demystifying Java security, written by Ramesh Nagappan, the author of Core Security Patterns.]]></description>
			<content:encoded><![CDATA[<p>Here are &#8220;Part 1&#8243;:http://searchappsecurity.techtarget.com/originalContent/0,289142,sid92_gci1195320,00.html and &#8220;Part 2&#8243;:http://searchappsecurity.techtarget.com/originalContent/0,289142,sid92_gci1195332,00.html of an article on demystifying Java security, written by Ramesh Nagappan, the author of Core Security Patterns.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/06/26/736/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Security topic is huge</title>
		<link>http://www.fuzzylizard.com/archives/2006/06/22/735/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/06/22/735/#comments</comments>
		<pubDate>Fri, 23 Jun 2006 02:53:44 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/06/22/735/</guid>
		<description><![CDATA[One thing I have been studying for work is Java security, in particular, I have been looking at &#8220;Acegi Security&#8221;:http://www.acegisecurity.org/, &#8220;JAAS&#8221;:http://java.sun.com/products/jaas/, and &#8220;JGuard&#8221;:http://jguard.net/. So far, the main thing that I have found out is that this topic is huge. I have also found out that there is very little information out there about which one [...]]]></description>
			<content:encoded><![CDATA[<p>One thing I have been studying for work is Java security, in particular, I have been looking at &#8220;Acegi Security&#8221;:http://www.acegisecurity.org/, &#8220;JAAS&#8221;:http://java.sun.com/products/jaas/, and &#8220;JGuard&#8221;:http://jguard.net/. So far, the main thing that I have found out is that this topic is huge. I have also found out that there is very little information out there about which one is best, however, I do realize that the word &#8220;best&#8221; is rather ambiguous, but it is the best word that I can think of at the moment.</p>
<p>Currently I think Acegi Security is the winner. I will post more info as I collect it. It would be nice to find a scholarly paper somewhere that showed a comprehensive study comparing the advantages and disadvantages of each framework in different situations, but I have a feeling that that is asking too much <img src='http://www.fuzzylizard.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/06/22/735/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My article to-read list</title>
		<link>http://www.fuzzylizard.com/archives/2006/05/29/727/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/05/29/727/#comments</comments>
		<pubDate>Mon, 29 May 2006 05:33:34 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[Application Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/05/29/727/</guid>
		<description><![CDATA[This post is mainly for me so that I can clear out part of my &#8220;Bloglines&#8221;:http://www.bloglines.com list of saved articles. Theoretically, these are articles that I intend to read at some point in time. * &#8220;Using Dependency Injection in Java EE 5.0&#8243;:http://www.onjava.com/pub/a/onjava/2006/01/04/dependency-injection-java-ee-5.html?CMP=OTC-FP2116136014&#038;ATT=Using+Dependency+Injection+in+Java+EE+5.0 * &#8220;An Exception Handling Framework for J2EE Applications&#8221;:http://www.onjava.com/pub/a/onjava/2006/01/11/exception-handling-framework-for-j2ee.html?CMP=OTC-FP2116136014&#038;ATT=An+Exception+Handling+Framework+for+J2EE+Applications * &#8220;Using Lucene to Search [...]]]></description>
			<content:encoded><![CDATA[<p>This post is mainly for me so that I can clear out part of my &#8220;Bloglines&#8221;:http://www.bloglines.com list of saved articles. Theoretically, these are articles that I intend to read at some point in time.</p>
<p>* &#8220;Using Dependency Injection in Java EE 5.0&#8243;:http://www.onjava.com/pub/a/onjava/2006/01/04/dependency-injection-java-ee-5.html?CMP=OTC-FP2116136014&#038;ATT=Using+Dependency+Injection+in+Java+EE+5.0<br />
* &#8220;An Exception Handling Framework for J2EE Applications&#8221;:http://www.onjava.com/pub/a/onjava/2006/01/11/exception-handling-framework-for-j2ee.html?CMP=OTC-FP2116136014&#038;ATT=An+Exception+Handling+Framework+for+J2EE+Applications<br />
* &#8220;Using Lucene to Search Java Source Code&#8221;:http://www.onjava.com/pub/a/onjava/2006/01/18/using-lucene-to-search-java-source.html?CMP=OTC-FP2116136014&#038;ATT=Using+Lucene+to+Search+Java+Source+Code<br />
* &#8220;Twelve Best Practices For Spring XML Configurations&#8221;:http://www.onjava.com/pub/a/onjava/2006/01/25/spring-xml-configuration-best-practices.html?CMP=OTC-FP2116136014&#038;ATT=Twelve+Best+Practices+For+Spring+XML+Configurations<br />
* &#8220;Using Spring with JDO and Hibernate&#8221;:http://www.onjava.com/pub/a/onjava/excerpt/springadn_ch05/index1.html?CMP=OTC-FP2116136014&#038;ATT=Using+Spring+with+JDO+and+Hibernate<br />
* &#8220;Integrating Ant with Eclipse, Part 1&#8243;:http://www.onjava.com/pub/a/onjava/excerpt/anttdg2_ch11/index.html?CMP=OTC-FP2116136014&#038;ATT=Integrating+Ant+with+Eclipse+Part+1<br />
* &#8220;Integrating Ant with Eclipse, Part 2&#8243;:http://www.onjava.com/pub/a/onjava/excerpt/anttdg2_ch11/index1.html?CMP=OTC-FP2116136014&#038;ATT=Integrating+Ant+with+Eclipse+Part+2<br />
* &#8220;Asynchronous Messaging Made Easy With Spring JMS&#8221;:http://www.onjava.com/pub/a/onjava/2006/02/22/asynchronous-messaging-with-spring-jms.html?CMP=OTC-FP2116136014&#038;ATT=Asynchronous+Messaging+Made+Easy+With+Spring+JMS<br />
* &#8220;Scheduling Jobs in a Java Web Application&#8221;:http://www.onjava.com/pub/a/onjava/2006/03/01/job-scheduling-in-web-application.html?CMP=OTC-FP2116136014&#038;ATT=Scheduling+Jobs+in+a+Java+Web+Application<br />
* &#8220;Proper handling of database-related exceptions&#8221;:http://www.oreillynet.com/onjava/blog/2006/03/proper_handling_of_databaserel.html?CMP=OTC-FP2116136014&#038;ATT=Proper+handling+of+database-related+exceptions<br />
* &#8220;Zero Configuration Networking: Using the Java APIs, Part 1&#8243;:http://www.onjava.com/pub/a/onjava/excerpt/bonjour_ch08/index.html?CMP=OTC-FP2116136014&#038;ATT=Zero+Configuration+Networking:+Using+the+Java+APIs+Part+1<br />
* &#8220;Advanced Configuration of the Spring MVC Framework&#8221;:http://www.onjava.com/pub/a/onjava/2006/03/22/advanced-spring-configuration.html?CMP=OTC-FP2116136014&#038;ATT=Advanced+Configuration+of+the+Spring+MVC+Framework<br />
* &#8220;Zero Configuration Networking: Using the Java APIs, Part 2&#8243;:http://www.onjava.com/pub/a/onjava/excerpt/bonjour_ch08/index1.html?CMP=OTC-FP2116136014&#038;ATT=Zero+Configuration+Networking:+Using+the+Java+APIs+Part+2<br />
* &#8220;Zero Configuration Networking: Using the Java APIs, Part 3&#8243;:http://www.onjava.com/pub/a/onjava/excerpt/bonjour_ch08/index2.html?CMP=OTC-FP2116136014&#038;ATT=Zero+Configuration+Networking:+Using+the+Java+APIs+Part+3<br />
* &#8220;Maven 2.0: Compile, Test, Run, Deploy, and More&#8221;:http://www.onjava.com/pub/a/onjava/2006/03/29/maven-2-0.html?CMP=OTC-FP2116136014&#038;ATT=Maven+2.0:+Compile+Test+Run+Deploy+and+More<br />
* &#8220;Agile Object to Relational Database Replication with db4o&#8221;:http://www.onjava.com/pub/a/onjava/2006/04/12/object-to-relational-database-replciation-with-db40.html?CMP=OTC-FP2116136014&#038;ATT=Agile+Object+to+Relational+Database+Replication+with+db4o<br />
* &#8220;Database Connection Pooling with Tomcat&#8221;:http://www.onjava.com/pub/a/onjava/2006/04/19/database-connection-pooling-with-tomcat.html?CMP=OTC-FP2116136014&#038;ATT=Database+Connection+Pooling+with+Tomcat<br />
* &#8220;Configuration Management in Java EE Applications Using Subversion&#8221;:http://www.onjava.com/pub/a/onjava/2006/05/03/j2ee-configuration-management-with-subversion.html?CMP=OTC-FP2116136014&#038;ATT=Configuration+Management+in+Java+EE+Applications+Using+Subversion<br />
* &#8220;Testing Java in an Object-Oriented Way&#8221;:http://today.java.net/pub/a/today/2006/03/28/testing-java-object-oriented.html<br />
* &#8220;Understanding Service Oriented Architecture&#8221;:http://today.java.net/pub/a/today/2006/04/04/understanding-service-oriented-architecture.html<br />
* &#8220;Exception-Handling Antipatterns&#8221;:http://today.java.net/pub/a/today/2006/04/06/exception-handling-antipatterns.html<br />
* &#8220;Why Spring JDBC?&#8221;:http://today.java.net/pub/a/today/2006/05/09/why-spring-jdbc.html<br />
* &#8220;An Introduction to Java Persistence for Client-Side Developers&#8221;:http://today.java.net/pub/a/today/2006/05/23/ejb3-persistence-api-for-client-side-developer.html<br />
* &#8220;Learn how to discern which design patterns and frameworks would work best for your enterprise applications&#8221;:http://www.javaworld.com/javaworld/jw-01-2006/jw-0130-pojo.html?lsrc=jwrss</p>
<p>Not too many articles to read, eh? <img src='http://www.fuzzylizard.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/05/29/727/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantage of using Hibernate &#8211; Database Independence</title>
		<link>http://www.fuzzylizard.com/archives/2006/05/22/724/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/05/22/724/#comments</comments>
		<pubDate>Tue, 23 May 2006 03:21:55 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/05/22/724/</guid>
		<description><![CDATA[This is probably stating the obvious, but one of the things that I like about using Hibernate is the simplicity it offers in regards to changing databases. The application that I am working on uses Derby as its RDBMS, however, I was having a few problems with it and wanted to change over to MySQL. [...]]]></description>
			<content:encoded><![CDATA[<p>This is probably stating the obvious, but one of the things that I like about using Hibernate is the simplicity it offers in regards to changing databases. The application that I am working on uses Derby as its RDBMS, however, I was having a few problems with it and wanted to change over to MySQL. Using Hibernate, all I had to change were a few lines in the hibernate.cfg.xml file and I was set. I ran my test suite and the whole thing just worked. Now granted, in the mapping files I had set the primary key to use native instead of hard wiring it. If I had not done this, I would have had to change 1 or 2 lines in every single mapping file, but still, not a lot of work to change databases.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/05/22/724/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Framework tutorials</title>
		<link>http://www.fuzzylizard.com/archives/2006/05/19/723/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/05/19/723/#comments</comments>
		<pubDate>Sat, 20 May 2006 03:52:33 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/05/19/723/</guid>
		<description><![CDATA[Here are a few tutorials that I found on &#8220;Spring&#8221;:http://www.springframework.org/ that will hopefully prove sufficient to get me started. * &#8220;The Complete Spring Tutorial&#8221;:http://www.roseindia.net/spring/index.shtml * &#8220;Developing a Spring Framework MVC application step-by-step&#8221;:http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step.html * &#8220;Java Boutique Tutorial on the Spring Framework&#8221;:http://javaboutique.internet.com/tutorials/spring_frame/ * &#8220;IBM Developer Works Introduction to the Spring framework&#8221;:http://www-128.ibm.com/developerworks/library/wa-spring1/ * &#8220;A Spring Jump Start&#8221;:http://www.developer.com/java/ent/article.php/3496416 As [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few tutorials that I found on &#8220;Spring&#8221;:http://www.springframework.org/ that will hopefully prove sufficient to get me started.</p>
<p>* &#8220;The Complete Spring Tutorial&#8221;:http://www.roseindia.net/spring/index.shtml<br />
* &#8220;Developing a Spring Framework MVC application step-by-step&#8221;:http://www.springframework.org/docs/MVC-step-by-step/Spring-MVC-step-by-step.html<br />
* &#8220;Java Boutique Tutorial on the Spring Framework&#8221;:http://javaboutique.internet.com/tutorials/spring_frame/<br />
* &#8220;IBM Developer Works Introduction to the Spring framework&#8221;:http://www-128.ibm.com/developerworks/library/wa-spring1/<br />
* &#8220;A Spring Jump Start&#8221;:http://www.developer.com/java/ent/article.php/3496416</p>
<p>As I work my way through the tutorials I will comment on which ones are worth working your way through.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/05/19/723/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wicket intro tutorials</title>
		<link>http://www.fuzzylizard.com/archives/2006/01/04/677/</link>
		<comments>http://www.fuzzylizard.com/archives/2006/01/04/677/#comments</comments>
		<pubDate>Wed, 04 Jan 2006 20:30:43 +0000</pubDate>
		<dc:creator>Chris Johnston</dc:creator>
				<category><![CDATA[Application Development]]></category>
		<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">http://www.fuzzylizard.com/archives/2006/01/04/677/</guid>
		<description><![CDATA[Here are two intro articles on working with Wicket that I plan on reading through in the very near future. One of my goals for TeamDocs is to rewrite the frontend (the view) using Wicket instead of JSP, so I am hoping that these articles will help. Wicket: A Little Bit About Wicket &#8230; A [...]]]></description>
			<content:encoded><![CDATA[<p>Here are two intro articles on working with Wicket that I plan on reading through in the very near future. One of my goals for TeamDocs is to rewrite the frontend (the view) using Wicket instead of JSP, so I am hoping that these articles will help.</p>
<ul>
<li><a href="http://www.javalobby.org/java/forums/t60786.html">Wicket: A Little Bit About Wicket &#8230;</a></li>
<li><a href="http://ensode.net/wicket_first_look.html">A First Look at the Wicket Framework</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fuzzylizard.com/archives/2006/01/04/677/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

