Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. [ERROR] Failed to execute goal org.wildfly.plugins:wildfly-maven-plugin:1.2.0.Final:deploy (deploy-webapp) on project cahierenligne: Failed to execute goal deploy: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-1" => {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit."app.war".INSTALL" => "WFLYSRV0153: Failed to process phase INSTALL of deployment "app.war"
  2. [ERROR] Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: WFLYEJB0406: No EJB found with interface of type 'com.alicegabbana.cahierenligne.services.action.ActionServiceLocal' for binding com.alicegabbana.cahierenligne.services.auth.AuthService/actionService"},"WFLYCTL0412: Required services that are not installed:" => ["jboss.deployment.unit."app.war".beanmanager","jboss.deployment.unit."app.war".WeldStartService"],"WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.deployment.unit."app.war".batch.artifact.factory is missing [jboss.deployment.unit."app.war".beanmanager]","jboss.deployment.unit."app.war".weld.weldClassIntrospector is missing [jboss.deployment.unit."app.war".WeldStartService, jboss.deployment.unit."app.war".beanmanager]"]}}}
  3. [ERROR] -> [Help 1]
  4.  
  5. @Stateless
  6. public class RoleService implements RoleServiceRemote {
  7. private static final long serialVersionUID = -7710388624873133691L;
  8.  
  9. @PersistenceContext(unitName = "MariadbConnexion")
  10. EntityManager em;
  11.  
  12. Logger logger = Logger.getLogger(RoleService.class);
  13.  
  14. public Role create (Role role) {
  15. ...
  16. }
  17.  
  18. public Role get(String name) {
  19. ...
  20. }
  21. }
  22.  
  23. @Local
  24. public interface RoleServiceLocal {
  25.  
  26. }
  27.  
  28. @Remote
  29. public interface RoleServiceRemote extends Serializable {
  30.  
  31. Role create (Role role);
  32. Role get(String name);
  33. }
  34.  
  35. <dependencies>
  36. <!-- Used by Test to manage entity -->
  37. <dependency>
  38. <groupId>org.hibernate</groupId>
  39. <artifactId>hibernate-search-orm</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/commons-validator/commons-validator -->
  43. <dependency>
  44. <groupId>commons-validator</groupId>
  45. <artifactId>commons-validator</artifactId>
  46. <version>1.4.0</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  50. <dependency>
  51. <groupId>joda-time</groupId>
  52. <artifactId>joda-time</artifactId>
  53. <version>2.10</version>
  54. </dependency>
  55.  
  56. <dependency>
  57. <groupId>com.nimbusds</groupId>
  58. <artifactId>nimbus-jose-jwt</artifactId>
  59. <version>5.7</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.hibernate</groupId>
  63. <artifactId>hibernate-validator</artifactId>
  64. <scope>provided</scope>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>slf4j-api</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.hibernate.javax.persistence</groupId>
  74. <artifactId>hibernate-jpa-2.1-api</artifactId>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.jboss.resteasy</groupId>
  79. <artifactId>resteasy-jaxrs</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec -->
  83. <dependency>
  84. <groupId>org.jboss.spec.javax.ejb</groupId>
  85. <artifactId>jboss-ejb-api_3.2_spec</artifactId>
  86. <version>1.0.1.Final</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/junit/junit -->
  90. <dependency>
  91. <groupId>junit</groupId>
  92. <artifactId>junit</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.wildfly/wildfly-ejb-client-bom -->
  96. <dependency>
  97. <groupId>org.wildfly</groupId>
  98. <artifactId>wildfly-ejb-client-bom</artifactId>
  99. <type>pom</type>
  100. </dependency>
  101.  
  102. <dependency>
  103. <groupId>javax</groupId>
  104. <artifactId>javaee-api</artifactId>
  105. <version>7.0</version>
  106. </dependency>
  107. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  108. <dependency>
  109. <groupId>log4j</groupId>
  110. <artifactId>log4j</artifactId>
  111. <version>1.2.17</version>
  112. </dependency>
  113. </dependencies>
  114.  
  115. <dependencyManagement>
  116. <dependencies>
  117. <dependency>
  118. <groupId>org.wildfly.bom</groupId>
  119. <artifactId>wildfly-javaee7-with-tools</artifactId>
  120. <version>${wildfly.version}</version>
  121. <type>pom</type>
  122. <scope>import</scope>
  123. </dependency>
  124. </dependencies>
  125. </dependencyManagement>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement