Reputation: 1107
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
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