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
Siegfried Heintze
Ranch Hand
Joined: Aug 11, 2000
Posts: 359
posted
0
I did some google searching and found this. However, it seems to generate the same error. Is createQuery the preferred approach?