FrameWorks/Hibernate
Hibernate - Hibernate unable to instantiate default tuplizer - cannot find getter
조미남
2012. 10. 29. 10:18
javassist.jar 를 라이브러리에 추가해 보세요. Maven 을 이용한다면 아래와 같은 방법으로 추가할 수 있습니다. * 메이븐 저장소 호출 위치는 아래와 같이. <repositories> <repository> <id>JBoss</id> <name>JBoss repository</name> <url>https://repository.jboss.org/nexus/content/groups/public-jboss</url> </repository> <repository> <id>mesir-repo</id> <url>http://mesir.googlecode.com/svn/trunk/mavenrepo</url> </repository> </repositories>
{
하이버네이트로 구축한 프로젝트를 구동 시 다음과 같은 에러가 발생될 때 다음과 같이 조치하면 해결될 수 있습니다.Hibernate unable to instantiate default tuplizer - cannot find getter
* 그리고 javassist Dependency는 아래와 같이.
<dependency>
<groupId>jboss</groupId>
<artifactId>javassist</artifactId>
<version>3.7.ga</version>
</dependency>
}