Posted by admin on December 29, 2008
I currently use Dreamhost for my own company “JustProposed.com” that is powered by typical LAMP solution. It is a great shared hosting solution but it doesn’t support website powered by Java. If you have Java website, I suggest you to try a web hosting company that provides you VPS (Virtual Private Server) solution. VPS occupies [...]
Posted by admin on December 25, 2008
Introduction This article is written on top of the great work that Sébastien Arbogast has done. He has written 3 articles that showed you how to wire up Flex, BlazeDS, Spring, Hibernate and MySQL with Maven as build process. I have included his articles below as your reference. The Flex, Spring, and BlazeDS full stack – [...]
Posted by admin on December 12, 2008
Concurrency Issue – Lost Update Lost update is the key concurrency problem that we try to avoid: From the sequences above, SELECT-UPDATE transaction A will overwrite the update Transaction B made to the balance. . If the transactions of A and B would serialize properly, the correct balance value after these transactions would be 700. [...]
Posted by admin on December 5, 2008
POM demysterified POM lets you to tell maven the “what” and maven knows the “how”. Put it in another way, POM gives you an abstraction layer over your build process to make things more explicit, more standard and easier to follow. There are several key elements in POM that I want to talk about. Below [...]