今天把项目从Tomcat下转移到JBOSS了,启动JBOSS服务器之后出了,控制台输出了
java.lang.IllegalAccessError: tried to access method net.sf.ehcache.CacheManager.<init>()V from class org.hibernate.cache.EhCacheProvider
此类错误错误信息,上网上查了一下.大概了解了下,原来是JAR文件版本问题,
The latest hibernate uses ehcache 1.2 - you seem to be using an older version (1.1 maybe). Upgrade your ehcache library and report back if you still have problems.
原来项目中使用了ehcache-1.1.jar文件,
把它换成
ehcache-1.2.3.jar文件后,
重新启动JBOSS服务器,问题解决~~~~
posted on 2008-01-16 10:36
Ke 阅读(8894)
评论(4) 编辑 收藏 所属分类:
exception 、
jboss