|
try {
this.getHibernateTemplate (). save (jobs);
}
catch (Exception e)
{
ret = false;
}
I get an error when I perform this save operation
null id in entry (don't flush the Session after an exception occurs)
Don't understand what's wrong with this error! The ID in the JOBS table is self-incrementing! |
|