I've been creating a new spring+JPA project following the setup outlined by Ben Hale here however all my DAO methods throw an exception with the Session Closed! error.
I can fix this by adding...
Type: Posts; User: ciaron; Keyword(s):
I've been creating a new spring+JPA project following the setup outlined by Ben Hale here however all my DAO methods throw an exception with the Session Closed! error.
I can fix this by adding...
The examples I've found of SimpleFormController show an existing business object being used as the backing object.
My question is, what if the form fields do not map exactly onto the business...
Hi,
Which of the examples have been updated for Spring 2.0, ie with the new xml configuration etc., the documentation doesn't specify.
I'm just about to start looking at Spring for a new...
Having just completed my first Spring project (a simple web app) I want to add some ajax into it.
What frameworks/libraries/helpers are people using to add ajax to spring?
Are there any...
Is there a different way of access bind errors other than ${status.errorMessage} as I want display all my errors together at the end of my document, not beside each form element as currently happens...
I have a simple page that deletes a row from my database, this controller is mapped to /delete.htm and is used e.g in the form /delete.html?del=22 where 22 is an example identifier of a persisted...
After a user creates an account for themselves using a SimpleFormController, instead of the user being redirected to the login form, I want the user to be automatically logged in with their new...