我正在使用 JBoss AS 7.1.1,但无法让我的 EJB 3.0 服务器项目运行。我得到错误
JBAS014777: Services which failed to start: service jboss.deployment.unit."GrahamsProj.ear".STRUCTURE: org.jboss.msc.service.StartException in service jboss.deployment.unit."GrahamsProj.ear".STRUCTURE: Failed to process phase STRUCTURE of deployment "GrahamsProj.ear"
我查了一下,错误似乎与我的jboss-deployment-structure.xml
. 这是我的样子:
<jboss-deployment-structure>
<deployment>
<dependencies>
<module name="org.slf4j" />
</dependencies>
</deployment>
</jboss-deployment-structure>
我不知道我是否有任何依赖关系,因为我从在线示例中获得了上述内容。我所知道的是错误意味着它不喜欢我的jboss-deployment-structure.xml
文件。我该怎么做才能使文件结构正确?