Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FAIL - Deployed application at context path /RxCircle but context failed to start

FAIL - Deployed application at context path /RxCircle but context failed to start The module has not been deployed. at org.netbeans.modules.j2ee.deployment.devmodules.api.Deployment.deploy(Deployment.java:210) at org.netbeans.modules.maven.j2ee.ExecutionChecker.performDeploy(ExecutionChecker.java:173) at org.netbeans.modules.maven.j2ee.ExecutionChecker.executionResult(ExecutionChecker.java:125) at org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.java:202) at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:153)

i am using tomcat 6 netbeans 7.0 java 6

i am getting this error when i am running my application in netbeans..

like image 494
santosh karadla Avatar asked Nov 28 '14 09:11

santosh karadla


1 Answers

I suspect that either (1) Your web.xml is missing, (2) your applicationContext is malformed or (3) your versions are not playing nicely together.

Since you are using Netbeans you can view the Server Log by doing this:

  1. Open the Services window (if it is not open go to: Window > Services)
  2. Right-click on the Tomcat Server and select View Server Log.

Now you can see the actual exception that is causing Tomcat not to deploy your war.

like image 87
cosbor11 Avatar answered Oct 28 '22 11:10

cosbor11