Welcome to MyUsers!
MyUsers is a sample application that was written as part of
Spring Live. It
is used to illustrate how to develop a web application using the
Spring Framework. This application
is very simple in that it only does CRUD (Create, Retrieve, Update and Delete)
on a "user" table in an HSQL database.
View Users or
Upload Files
For persistence, it uses Hibernate and HSQL as an in-memory database. The
database and its tables are created on-the-fly when tests (or the application)
is run. The one issue of using this method is that records disappear every
time the app is started. The nice side effect is that you never write tests
that depend on existing data.