0
votes

JBoss Server Used: jboss-eap-7.1.0

Used IDE: IntelliJ IDEA 13.1.3

Can build the war file in target project folder but that created WAR hasn't deployed in JBOSS deployment path location which is "\jboss-eap-7.1.0\standalone\deployments"

JBOSS web.xml file can see in below

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web version="8.0" xmlns="http://www.jboss.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/schema/jbossas/jboss-web_8_0.xsd">
  <context-root>/usermanagement</context-root>
</jboss-web>
1
How are you deploying the application?James R. Perkins
I have tried to deploy by using IDE called IntelliJ idea 13.1.3.kasun De Silva
I'm not sure how Intellij deploys the application. You might want to look at jetbrains.com/help/idea/… or jetbrains.com/help/idea/…James R. Perkins
How are you trying to deploy it in exploded format/war format?Have you tried deploying it manually,without using Intellij does that work?As in by directly placing war in standalone/deploymentsSweta Patra
Is your issue resolved?Sweta Patra

1 Answers

0
votes

IntelliJ is using the JBoss management API for doing the deployment. You won't see anything within the standalone/deplyoments directory.

To check your deployment state, look into the server.log file.