Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using .html files as JSPs

This may be a silly question but I've found no answer when googling this.

Currently, I map the requests from someFileName.html to a servlet which then forwards to someFileName.jsp using servlet mappings in web.xml. I would like to avoid that and just configure my application server so that html files are parsed and executed as if they were JSPs (so that custom tags and EL could be used from within the HTML). Bonus to answers that allow any extensions to be mapped to the JSP processor.

I use Tomcat but I'd like the solution to be portable to other containers such as Glassfish.

like image 887
jd. Avatar asked Nov 22 '10 19:11

jd.


1 Answers

With 2 simple steps you can achieve this:

  1. Add this servletmapping for the JSP servlet:

    <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>
    

    This tells the application container to use the the JSP servlet when serving html files.

  2. Comment out the <mime-mapping> for text/html mime type (*.html) files so that the container won't handle HTML files as static content.

Hope this helps.

like image 133
fasseg Avatar answered Oct 18 '22 16:10

fasseg