0

I've used wampserver for serving PHP requests.

Now I want to use jsp,is it possible for apache?

Otherwise I have to install tomcat,is there a wampserver alike tool out there?

apache
  • 3,027
  • 6
  • 25
  • 25

1 Answers1

2

Java Server Pages can not be interpreted by Apache httpd directly. You have to install a Servlet container like Apache Tomcat or Jetty which you can connect to Apache httpd via mod_ajp or mod_proxy.

joschi
  • 20,747
  • 3
  • 46
  • 50
  • Oh seems complicated to use apache to server jsp.Is there a wampserver alike tool for tomcat? – apache Mar 22 '10 at 10:37
  • This here sounds interesting: http://php-java-bridge.sourceforge.net/pjb/tomcat6.php It also allows to make calls between PHP and Java code. I haven't tried it yet, but I would, if I had to integrate PHP with Java. – Chris Lercher Mar 22 '10 at 10:48
  • I don't want to install database,java,tomcat manually,is there a tool to automate the setup ? – apache Mar 22 '10 at 10:55