kostas trichas
kostas trichas

Reputation: 3013

GWT Gilead error

Well i have done all the setup for Gilead, although i get this error:

[WARN] Exception while dispatching incoming RPC call java.lang.NoClassDefFoundError: net/sf/cglib/proxy/Enhancer at net.sf.beanlib.hibernate.UnEnhancer.unenhanceClass(UnEnhancer.java:65) at net.sf.gilead.core.hibernate.HibernateUtil.getUnenhancedClass(HibernateUtil.java:396) at net.sf.gilead.core.hibernate.HibernateUtil.isPersistentClass(HibernateUtil.java:365) at net.sf.gilead.core.PersistentBeanManager.mergePojo(PersistentBeanManager.java:463) at net.sf.gilead.core.PersistentBeanManager.merge(PersistentBeanManager.java:318) at net.sf.gilead.gwt.GileadRPCHelper.parseInputParameters(GileadRPCHelper.java:94) at net.sf.gilead.gwt.GileadRPCHelper.parseInputParameters(GileadRPCHelper.java:137) at net.sf.gilead.gwt.PersistentRemoteService.processCall(PersistentRemoteService.java:172) ...

Upvotes: 0

Views: 1412

Answers (1)

Chris Lercher
Chris Lercher

Reputation: 37798

You're missing the library "cglib-*.jar" in the execution classpath. You need to make the runtime dependencies for the modules

  • adapter-core
  • adapter4gwt
  • hibernate-util

available to the server, as described in http://noon.gilead.free.fr/gilead/index.php?page=dependencies .

The usual way to do this, is to take the corresponding libraries - which are contained in your Gilead download (e.g. http://sourceforge.net/projects/gilead/files/gilead/1.3.2/), and your Hibernate download (e.g. http://sourceforge.net/projects/hibernate/files/hibernate3/3.6.3.Final/) - and put them into war/WEB-INF/lib.

Upvotes: 1

Related Questions