Did you ever get the answer to this question? I have seen in other threads
this issue about querying the users. Apparently its a Hibernate issue and
its joining the user's roles and returning you the cross-join product. The
way it was suggested to fix this is to put your Users (or Students) int
here is my studentManger generic bean in applicationContext.xml:
I think is ok, isn't?
I retrieve in such way:
import org.appfuse.service.GenericManager;
import org.appfuse.webapp.pages.BasePage;
import pl.wingtsun.vs.model.Student;
import java.util.Li
What exactly is your GenericManager trying to retrieve?
Did you check it is set to retrieve Student objects and NOT User?
Seems an odd duplication. Are you adding and remove these records in your
tests?
Krzysztof Kaczmarek wrote:
>
> Hello,
>
> I'm trying extend user class. I've following