Hello friends,
I am new to jsp. I am using JRUN, I would like to know how jsp files should be mapped (is it just like servlets ie alias naming) or by what means it should be called.
Advanced thanks for helpers.
-
how to map jsp (1 messages)
- Posted by: N SK
- Posted on: July 24 2000 22:49 EDT
Threaded Messages (1)
- how to map jsp by Floyd Marinescu on July 25 2000 12:41 EDT
-
how to map jsp[ Go to top ]
- Posted by: Floyd Marinescu
- Posted on: July 25 2000 12:41 EDT
- in response to N SK
JSP's are not mapped like Servlets are. You simply place a JSP in a directory relative to the root of your website, and call it directly!
So if you have foo.jsp, and you place it in a directly called bar (just under the root of your website), you would access it by typing in:
http://www.yourserver.com/bar/foo.jsp
Thats it!
Floyd