Hibernate @ManyToOne references an unknown entity
I figured out the problem: I was not adding class Team to the Hibernate AnnotationConfiguration
object. Thus, Hibernate was not recognizing the class.
Along with entry in hibernate.cfg.xml, you'll need @Entity
annotation on referenced class.