>[/WEB-INF/spring-configuration/ticketRegistry.xml]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/jboss/cache/Cache > at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275)
This is a class loading problem. JBOSS by default uses (IIRC) an isolated classloading strategy for web application. The class org.jboss.cache.Cache is not part of the classpath of the CAS server webapp. Try this: a) add a dependency to the JBOSS Cache artifact to the cas server pom, rebuild, redeploy b) change JBOSS' class loading policy so that the global cache libs (somewhere in %JBOSS_HOME%/lib or somewhere else) are visible from your web app (I don't exactly how to this, the last JBOSS project was some years ago) HTH -- Tobias -- View this message in context: http://jasig.275507.n4.nabble.com/Re-Need-help-on-Clustering-CAS-tp2248793p2248793.html Sent from the CAS Users mailing list archive at Nabble.com. -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
