Nika Tsogiaidze
Nika Tsogiaidze

Reputation: 1107

Can I run jsp files on usual web hosting?

I have simple question: Can I run JSP files on usual web hosting or I have to host my site on JAVA hosting?

Upvotes: 1

Views: 433

Answers (1)

watery
watery

Reputation: 5487

You need a host that provides at least a servlet container (like Tomcat), to properly run JavaServer Pages.
Otherwise the web server could still offer your JSP pages (with some tweaking of the server configuration I guess) as static content (i.e. HTML pages with .jsp extension).

Upvotes: 1

Related Questions