Both:
http://www.hibernate.org/hib_docs/annotations/reference/en/html_single/#entity-mapping-association
And
http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#collections-mapping
Are probably the best resources for this.
You will need to specify one-to-many or many-to-many on this field. The org.hibernate.AnnotationException you are receiving is likely because:
a) PropertyFeature is not mapped with an @Entity. It needs to be a mapped instance as well.
b) PropertyFeature is mapped, but Hibernate can't find it. Not sure how you are using spring/hibernate but likely there is some place where you specify packages or classes that are mapped for hibernate to look. Make sure that PropertyFeature is included in this list.