hi,
i'm new in GWT,
i've added a gwt-validation library,
error appears when hibernate have to do merge
/*
* (non-Javadoc)
* @see org.skyway.spring.util.dao.JpaDao#store(java.lang.Object)
*/
@Transactional
public T store(T toStore) {
if (canBeMerged(toStore)) {
return merge(toStore);
}
else {
return persist(toStore);
}
}
i don't have a stacktrace.
all calls to db doesn't work
in debug mode i see only java.lang.reflect.InvocationTargetException
with target NullPonterExceptions in AopUtils.Class
some helps?