I have an HTML file and I want to use javascript to call a JSP file.
It doesn’t have to be javascript, I’m just looking for the easiest way to call the JSP file from the HTML file.
How can I do this?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HTML/CSS/JavaScript runs at the client side. Java/JSP runs at the server side. The client and server are two distinct environments which usually runs at physically different machines, connected with each other by a network with the communication protocol being HTTP.
When the client requests a specific URL at the server, the server will run specific Java/JSP code and return a HTML/CSS/JS response back to the client. The client (webbrowser) will in turn execute the HTML/CSS/JS.
Knowing this fact, it should be obvious that the only way to let JavaScript access/invoke some Java/JSP code is to send a HTTP request to the server side. This can be done in several ways: using
window.locationto do a synchronous GET request, orform.submit()to do a synchronous GET or POST request, orXMLHttpRequest#send()to do an asynchronous (ajaxical) request.But you after all don’t need JavaScript for this at all. A simple HTML link or form is also sufficient.
or
This will open the JSP file. If you’d like to run some business stuff prior to opening the JSP page, then better let the URL point to a Servlet like
<a href="page">which in turn forwards the request to the JSP page likeTo learn more about the wall between Java/JSP and JavaScript you may find this article useful.