I already found some information about this exception but mine is very strange.
Caused by: org.hibernate.PropertyNotFoundException:
Could not find a setter for property empty in class java.util.List
There is no information where is the failure. I use List in my entities but I don’t understand where is the failure.
I got it.
I use this embedded collection in a super class and override its getter setter in subclass.
The problem was, i had @ElementCollection annotation just in subclass. When i wrote it to superclass, the problem was solved.
thanks for your responses.