페이지

2013년 8월 9일 금요일

에러발생 Caused by: org.hibernate.MappingException: Unknown entity: ex.SampleEntity

*발생한 에러 메시지

Caused by: org.hibernate.MappingException: Unknown entity: ex.SampleEntity


*하이버네이트 설정이 아래와 같이 annotatedClasses 로 매핑한 경우라면

<bean id="sessionFactory"          class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
          <property name="dataSource" ref="dataSource" />
          <property name="annotatedClasses">
               <list>
<value>ex.SampleEntity</value>
               </list>
          </property>
...

*아래와 같이 SampleEntity 클래스에 @Entity 어노테이션이 있는지 확인하세요.

@Entity @Table(name = "SampleEntity")
public class SampleEntity{


잘되던 클래스가 안돼서 확인해보니 언제 지웠는지 @Entity 어노테이션이 없는 경우가 있었습니다.