https://www.baeldung.com/hibernate-mappingexception-unknown-entity Exception 시리즈 마지막 ~! org.hibernate.MappingException: Unknown entity Hibernate와 Spring 및 Hibernate 환경 모두에 대한 알 수 없는 엔티티 문제 및 해결방법이다 Missing or Invalid @Entity Annotation 1. @Entity 주석이 누락된 엔티티 클래스의 경우 public class Foo implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; public Foo() { supe..