Advertisement
Guest User

Untitled

a guest
Mar 9th, 2011
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.20 KB | None | 0 0
  1. jboss.log
  2. -------
  3. ...
  4.  
  5. 20:44:43,426 INFO  [BeanInstantiatorDeployerBase] Installed org.jboss.ejb3.instantiator.impl.Ejb31SpecBeanInstantiator@3ea0c416 into MC at org.jboss.ejb.bean.instantiator/first-safe-online-deploy-SNAPSHOT/safe-online-model-SNAPSHOT/UsageAgreementServiceBean
  6.  
  7. ....
  8.  
  9. 20:44:48,298 ERROR [AbstractKernelController] Error installing to Real: name=vfs:///home/devel/wvdhaute/safe-online/server/distribution/safe-online-distribution/target/safe-online-distribution-SNAPSHOT/jboss/server/default/deploy/first-safe-online-deploy-SNAPSHOT.ear state=PreReal mode=Manual requiredState=Real: org.jboss.deployers.spi.DeploymentException: Error starting Ejb3Deployment: safe-online-model-SNAPSHOT.jar
  10. ...
  11.  
  12. Caused by: java.lang.Exception: Exception while registering EJB container for EJB: UsageAgreementServiceBean in unit: safe-online-model-SNAPSHOT.jar
  13.     at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:621) [:1.7.17]
  14.     at org.jboss.ejb3.deployers.Ejb3DeploymentDeployer.internalDeploy(Ejb3DeploymentDeployer.java:74) [:6.0.0.Final]
  15.     ... 46 more
  16. Caused by: java.lang.RuntimeException: No SwitchBoard Barrier found for bean: UsageAgreementServiceBean in unit: AbstractVFSDeploymentContext@1499689553{vfs:///home/devel/wvdhaute/safe-online/server/distribution/safe-online-distribution/target/safe-online-distribution-SNAPSHOT/jboss/server/default/deploy/first-safe-online-deploy-SNAPSHOT.ear/safe-online-model-SNAPSHOT.jar/} (or its component deployment unit)
  17.     at org.jboss.ejb3.deployers.Ejb3JBoss5Deployment.registerEJBContainer(Ejb3JBoss5Deployment.java:159) [:6.0.0.Final]
  18.     at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:599) [:1.7.17]
  19.     ... 47 more
  20.  
  21. ----------
  22.  
  23. @Stateless
  24. @LocalBinding(jndiBinding = UsageAgreementService.JNDI_BINDING)
  25. public class UsageAgreementServiceBean implements UsageAgreementService {
  26.  
  27.     private static final Log LOG = LogFactory.getLog( UsageAgreementServiceBean.class );
  28.  
  29.     @EJB(mappedName = UsageAgreementManager.JNDI_BINDING)
  30.     private UsageAgreementManager usageAgreementManager;
  31.  
  32. ...
  33. }
  34.  
  35. @Local
  36. public interface UsageAgreementService extends FooService {
  37.  
  38.     public static final String JNDI_BINDING = "Foo/UsageAgreementServiceBean/local";
  39.  
  40. ...
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement