M Sach
M Sach

Reputation: 34424

How to search the correponding JSP file of any web page/HTML page?

I have a web application . When i right click on any html/webpage inside my browser , for some pages it shows the excaxt jsp page like http://localhost:8080/MyWebApp/vustomer.jsp while for some pages it shows action class instead of jsp page like http://localhost:8080/MyWebApp/TellerAction.do?actionCode=3&page=controlPanel. I am not getting what is reason behind these two different behaviour? i mean why it does show jsp file name for some page but not for others?

Upvotes: 0

Views: 1749

Answers (1)

Victor Sorokin
Victor Sorokin

Reputation: 12006

I guess because HTML code of page sometimes has <a href='...jsp'>...</a> and other times it has <a href='...do'>...</a>.

Your best bet to find out why is to ask author of code :)

Usually, .do URLs are served by servlets, not jsp.

Upvotes: 2

Related Questions