Apr 7, 2007

Works in Tomcat against this URL:

  http://localhost:8080/SpringInActionMVC4/home.htm
  
Dumps data from table Customer to log from the controller.

Add the Hibernate-related files by copying and pasting from A8-Mike-Customers.
Make a few changes (don't forget changing the package name from luna to training
in a few places).

It was necessary to change the MySQL table name to match the Java class (Customer).
It had been Customers and that's supposed to work, but apparently the Spring
Hibernate jar is bent -- must update the Hibernate config file, which makes the
association (see jstern81's comment about 2/3s down):

    http://forum.springframework.org/archive/index.php/t-19737.html

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    
Segue towards returning the Customers data to the JSP through an ArrayList of
Customer objects, rudimentary display on the JSP side to make sure it's there.
