您可以在taglib代码中使用taglib获取jsp文件的文件名吗

发布于 2024-08-08 19:53:22 字数 228 浏览 3 评论 0原文

是否可以从java代码中获取使用taglib的jsp文件的文件名?

public int doStartTag() throws JspException 
{
    try
    {
        String xxx = pageContext.?

xxx 将获取 jsp 文件的文件名(当然可以是嵌套的包含文件)

br /B

Is it possible to get the filename of the jsp file that uses a taglib from the java code?

I.e.

public int doStartTag() throws JspException 
{
    try
    {
        String xxx = pageContext.?

Where xxx would get the filename of the jsp file (which of course could be a nested include file)

br
/B

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

用心笑 2024-08-15 19:53:22

不可能仅仅获得 JSP 文件的名称,因为此时它已经被编译并且您正在处理编译版本而不是源 JSP 文件。

您可以获取已编译为 via 的 JSP 类的名称

pageContext.getPage().getClass().getName();

,并尝试从中派生出 JSP 名称,但 JSP 容器之间的命名方案有所不同。

It's not possible to get the name of the JSP file simply because at this point it has been compiled and you're dealing with compiled version rather than source JSP file.

You can get the name of the class JSP has been compiled into via

pageContext.getPage().getClass().getName();

and try to derive the JSP name from it but the naming scheme differs between JSP containers.

做个ˇ局外人 2024-08-15 19:53:22

您可以获取 JSP 的文件名和路径:

String jspFilePath = ((Servlet)pageContext.getPage()).getServletConfig().getServletName();

You can get the file name and path of the JSP:

String jspFilePath = ((Servlet)pageContext.getPage()).getServletConfig().getServletName();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文