What is .jspa URL extension in web applications?

In many online web applications, I notice that the application url ends with jspa. My assumption is it is a jsp and action is mapped to jspa instead of *.do.

Is my understanding correct or there is an actual extension/different meaning? Kindly suggest and ignore if this question is very basic. I googled already and could not get clear answer.

2 Answers

In many online web applications, I notice that the application url ends with jspa. My assumption is it is a jsp and action is mapped to jspa instead of *.do.

Your assumption is almost correct. Why I have used the word, almost is because you have mentioned that it is a JSP. In fact, it can be anything; not just a JSP. The URL contains a logical name and it may be mapped to a Servlet, JSP or any other thing. The URL, looks like an XML document at first sight but it is actually not. The actual content is rendered based on the Content-Type header i.e. you can see a URL with extension .abc which may actually render an HTML page.

Most probably just like JavaServer Pages (JSP) is a Java standard technology that enables you to write dynamic, data-driven pages for your Java web applications.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like