If anybody else has this issue, just ensure you have this class in your classpath...
| import org.jboss.seam.ScopeType;
| import org.jboss.seam.annotations.Install;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Scope;
|
| /**
| * At the moment the folks at JBoss decided that Hibernate should be required
| * on the classpath.
| *
| * This fixes that
| *
| * @author Jason Holmes
| *
| */
| @Deprecated
| @Name("org.jboss.seam.ui.hibernateEntityLoader")
| @Install(precedence = Install.MOCK)
| @Scope(ScopeType.STATELESS)
| public class HibernateEntityLoader {
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113590#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...