如何从jsp页面的一部分中查找包含的JSP名称

时间:2014-03-18 11:56:54

标签: jsp

我们所有人都有一个JSP页面,其中包含几个其他jsp页面来显示页面。

是否有任何工具或插件可以从显示的页面中找到包含的jsp文件名?

2 个答案:

答案 0 :(得分:1)

您应该使用此方法:

    <%
       ...
    getServletConfig().getServletContext().getRealPath(request.getServletPath());
    //returns file name and path
       ...
    %>

    <%
    ...
    application.getRealPath(request.getServletPath()); 
    //returns file name and path
    ...
    %>

    <%
    ...
    this.getClass().getName(); 
    //returns the class name
    ...
    %>

答案 1 :(得分:1)

Is there any tool or plugin to find out the included jsp file name from the displayed page?

您无法在浏览器中查看JSP标记,因为它们是在服务器中编译的