I have been feeling kinda scattered.  I am in a position at
work that I have not been in before.  I have an existing system
that works pretty well, i have 7 sites all running well.  But I
have been given the opportunity to redisgn the system and to use the
best technology available.  What would that be?  Well they
have left it up to me to decide.

So I have spent the last week looking at Frameworks, tools, and reading
about all the things I havnt had time for in the last year.  And
now I have a new feeling.  I feel totally overwhelmed.

After doing the DAO implementation of Ray’s blog code for my site, I
realized that writing all the classes and hacks that were required to
implement the model I designed, was not a good path to take in
cf.  The blog code is a small app and the new app i would be
designing is huge.  I cant imagine trying to manage all of that
using similar practices.

This led me to look into Hibernate.  I wrote a couple demo java
apps and was supremly impressed with the simplicity of the
persistence.  create a session, create a transaction, open up your
favorite pojo, call session.save(pojo), close the transaction, close
the session.  Using xml files to map your pojo’s to your database
schema it does all the hard stuff.  So I moved on to trying to use
cf and hibernate together.  Unfortunatly it appears the log4j that
is used in cf and the log4j in the libs for hibernate dont play well
together.  So until I figure out how to get around that i am kinda
stuck.

Anyway, I guess I just wanted to post about it, to sort things out in
my head.  And it never hurts to see if others have any ideas or
suggsestions about my thoughts.  There seems to be a trend among
the CF’ers of late.  That is "quit whining about what cf cant do
OO, and utilize the strenghts that it has"  and one of those
strengths being the easy use of java.  So i am looking that head
that way.  Problem is from where i am, I cant see the path.