posted 14 years ago
I'm working on making an example work using spring and hiberate as inspired by "Spring IN Action" 2nd ed page 189.
I have schema generation working and a call to essionFactory.getCurrentSession().saveOrUpdate(emp) working.
Now I would like to retrieve the one employee object I have successfully saved to MySQL.
The following does not work (see stack trace below) because it dies on the find function.
Questions:
(1) How do I fix the exception that is being thrown?
(2) I see that find is deprecated. How do I reimplement this with the new functions?
Thanks,
Siegfried