Can you render a file without a .jsp extension as a JSP?

前端 未结 2 610
误落风尘
误落风尘 2020-12-20 13:37

Is it possible to tell a standard Java EE servlet container to interpret and render a file as a JSP even if it doesn\'t have a .jsp extension?

Say I have a file call

2条回答
  •  悲哀的现实
    2020-12-20 14:18

    Add a JSP servlet mapping on that URL pattern to your webapp's web.xml.

    
        jsp
        *.xyz
    
    

    Note that this assumes that servletcontainer's own JSP servlet is registered with the servlet name of jsp which is the de facto standard servlet name of the JSP servlet. Verify the entry inside servletcontainer's own web.xml to be sure. In case of for example Tomcat, that's the /conf/web.xml file in its installation folder.

提交回复
热议问题