views:

1654

answers:

3

I am newly started using WAMP server. I am unable to deploy my java application on it. only Html pages run. Please help with directory structure and where to keep jsp, java, .class ,war,xml files. JSP code is shown on html page when i click link for jsp.

A: 

Maybe I'm wrong and/or I don't understand the question... But if you are using WAMP Server : is that not a server for PHP development -- and not JAVA/JSP ?

If you need to deploy some JAVA-related application, you'll probably have to use a server that supports JAVA, I suppose -- what about something like Apache Tomcat ?

Pascal MARTIN
A: 

WAMP Server is primarily meant for PHP/MySQL Development on Windows and does not support Java/JSP out of the box.(AFAIK) While it would be possible to use the same WAMP installation for configuring it to support JSPs, you would still need a Servlet Container for interpreting your Java/JSP source files. Since you are new to WAMP, it would be more logical to install a different Servlet Container such as Tomcat given below to reduce the time needed to get you up and running.

To deploy JSP applications with minimal configuration/maintenance other than your project specifications, check out Apache Tomcat for Windows.

http://tomcat.apache.org/ - Download Tomcat 6.0(Windows Service)

Thiyagaraj