java – 新的缺失/不满足的依赖项WildFly 9中的错误

我正在从Jboss7迁移到WildFly 9.

启动WildFly 9时出现以下错误.我正在使用部署的应用程序从eclipse启动服务器.

同样的应用程序从Jboss7开始没有问题

 WFLYCTL0184:    New missing/unsatisfied dependencies:
       service jboss.remoting.endpoint.subsystem.outbound-connection.remote-ejb-connection (missing) dependents: [service jboss.ejb3.dd-based-ejb-client-context."test.war".internal-remoting-profile] 



 10:18:43,087 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 9.0.1.Final (WildFly Core 1.0.1.Final) started (with errors) in 30273ms - Started 338 of 513 services (4 services failed or missing dependencies, 220 services are lazy, passive or on-demand)


 WFLYCTL0184:    New missing/unsatisfied dependencies:
       service jboss.ejb3.dd-based-ejb-client-context."test.war" (missing) dependents: [service jboss.deployment.unit."test.war".ejb3.client-context.registration-service, service jboss.deployment.unit."test.war".INSTALL] 
       service jboss.ejb3.dd-based-ejb-client-context."test.war".internal-remoting-profile (missing) dependents: [service jboss.ejb3.dd-based-ejb-client-context."test.war"] 
       service jboss.naming.context.java.app.test(missing) dependents: [service jboss.deployment.unit."test.war".INSTALL] 
       service jboss.naming.context.java.module.test.test(missing) dependents: [service jboss.deployment.unit."test.war".INSTALL] 

我在这里检查了一些类似的问题,但似乎没有人回答.有人可以帮我解决这个问题.

我错过了一些配置

最佳答案 我错过了standalone.xml中的出站连接标记,一旦我添加了带有必要数据的标记,错误就会消失.

点赞