Reputation: 1
I'm trying to make a deploy in my Java file using a WildFly server, but is coming this message:
""WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.resources.BeanManager"], "WFLYCTL0180: Services with missing/unavailable dependencies" => ["service jboss.naming.context.java.module."task_manager-1.0-SNAPSHOT"."task_manager-1.0-SNAPSHOT".env.BeanManager is missing [jboss.naming.context.java.jboss.resources.BeanManager]"]"
My file beans.xml is in the path 'main/java/webapp/META-INF'
Can you help me with this issue?
I have tried to move the path to src/main/resources/META-INF
and declare in the pom.xml:
<resources>
<resource>
<directory>src/main/webapp</directory>
<includes>
<include>WEB-INF/beans.xml</include>
</includes>
</resource>
</resources>
Upvotes: 0
Views: 45