Quote:
|
Originally Posted by kafftarbaz
/*
The next step throws this Exception!!!!!!!!
org.hibernate.PropertyAccessException: IllegalArgumentException occurred while calling setter of de.dcfs.quest.model.dataobjects.RVarRegions.actSta tus
*/
result = session.createQuery(
"from RVarRegions where actStatus <> 1 ")
.list();
|
Try changing this to
Code:
result = session.createQuery(
"select * from RVarRegions where actStatus <> 1 ") .list()
just to see if that "solves" the problem (or at least shifts the error to some lines further down).
If so, you will probably have to replace the added "*" by something more specific...