Ballon
Ballon

Reputation: 7204

jsp (java server page ) on apache2

Is it existing some module for jsp(java server page) like (mod_python, mod_asp, mod_perl,...) for apache2 on windows. Without installing another web server.

Upvotes: 1

Views: 946

Answers (1)

BalusC
BalusC

Reputation: 1108567

You need at least need a JSP/Servlet container on top of Apache HTTPD, for example Apache Tomcat. Apache HTTPD can be connected to Apache Tomcat using mod_jk.

Apache Tomcat in turn can also be used as a webserver, but that's not its primary purpose. With the mod_jk you can just serve the JSP/Servlet resources from Apache Tomcat through Apache HTTPD.

Upvotes: 1

Related Questions