Configuring tomcat deployment context xml location in Netbeans

Issue:

When generating a URL to deploy the application on Tomcat, NetBeans
does not escape special characters, which causes Tomcat to mis-interpret them, thus causing deployment to fail.

Solution:

Instead of default “C:\Documents and Settings\sanjith\Local Settings\Temp” directory location of deployment context.xml file,  use simple location (without spaces or any special characters) like D:\temp.

Note: Changing of the windows environment variable “TEMP” will not help here!

Instead add the following in “netbeans.conf” file under the “etc” directory of netbean’s installation home directory to resolve this problem.


-J-Djava.io.tmpdir="D:\temp"

How to resolve admin page opening issue after tomcat configuration in eclipse

Issue:

So often you would have noticed after tomcat configuration in eclipse, the admin start page never opens!

Reason:

Eclipse doesn’t copy the default application folders (e.g. ROOT) when it creates the tomcat specific folder inside the workspace.

Solution:

  1. Go to your “eclipse-workspace -> .metadata -> .plugins -> org.eclipse.wst.server.core -> tmp<number> -> wtpwebapps” directory
  2. Copy the ROOT folder from your “apache installation home -> webapps” directory to the directory mentioned in Step 1.  If prompted with overwrite dialog box, select yes and proceed.
  3. Reload http://localhost/ page. Admin start page should now open without any issues!