您可以在taglib代码中使用taglib获取jsp文件的文件名吗
是否可以从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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可能仅仅获得 JSP 文件的名称,因为此时它已经被编译并且您正在处理编译版本而不是源 JSP 文件。
您可以获取已编译为 via 的 JSP 类的名称
,并尝试从中派生出 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
and try to derive the JSP name from it but the naming scheme differs between JSP containers.
您可以获取 JSP 的文件名和路径:
You can get the file name and path of the JSP: