Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you deploy a Java web app to Tomcat server, on another computer on network(or internet) , through an IDE like Netbeans for development/testing & production purposes ?

Any feature in Netbeans that makes this simpler ?

share|improve this question

2 Answers

You can do this by modifying your build.xml. You'll need catalina-ant.jar from the Tomcat distribution. I throw it in my build-jars directory - you can also place it in ANT_HOME/lib. Here's what I have in my build.xml to deploy to a remote Tomcat:

<property name="build-jars" location="build-jars" />
<property name="deploy" location="deploy" />
<property name="target.name" value="myapp" />
<property name="tomcat.manager.url" value="http://server.com:8080/manager/text"/>
<property name="tomcat.manager.username" value="user" />
<property name="tomcat.manager.password" value="pass" />

<taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask">
  <classpath>
    <path location="${build-jars}"/catalina-ant.jar" />
  </classpath>
</taskdef>

<target name="deploy-war" depends="war" description="Deploy to Tomcat">
  <deploy url="${tomcat.manager.url}"
          username="${tomcat.manager.username}"
          password="${tomcat.manager.password}"
          path="/${target.name}"
          update="true"
          war="file:${deploy}/${target.name}.war" />
</target>

Note that in Tomcat 7 the user will need to have the manager-script role set in tomcat-users.xml.

share|improve this answer

Use the tomcat-maven-plugin. An in-IDE support is intended for localhost dev purposes only.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.