tags:

views:

13

answers:

1

I am developing java application.I want to hide the jsp and html page. please any body know please tell me?

A: 

What do you mean by hide? Do you mean you want to hide the extension from the user?

If that is the case, then please indicate what kind of application stack you have.

Are you using a servlet container with Apache httpd in front? This is quite common. In that case you have several options, including mapping URLs to filesystem locations in Apache (for the .html files) and configuring your web application in your web.xml with JSP handlers.

Ernst de Haan