Re: Java Server Faces and Java Persistence API - Newbie problem
by nax <naxat88@[EMAIL PROTECTED]
>
Aug 10, 2007 at 11:44 AM
Hello,
I've found the solution to my problem on my own.
The problem was that there were the two getter and setter methods
"Book getBook()" and "setBook(Book)" in my Book class. Because of this
methods the framework must have searched for a relation****p between
two books, although I haven't specified a relation****p with an
annotation in my class. After removing those two methods the program
worked as expected.
Sorry for bothering you.