jsp页面获得调用者的uri

如果点击一个opencms的资源页面,opencms实际上,是自动调用template-elements属性指向的jsp页面,展现给用户。那么如何在jsp中获得资源页面的uri呢?

 

以下代码可以做到:

CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);

String filename = cms.getRequestContext().getUri();
 

你可能感兴趣的:(cms,jsp)