Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
liferay-portlet.xml文件允许<css-class-wrapper>标签内的<portlet>标签。
liferay-portlet.xml
<css-class-wrapper>
<portlet>
是否可以在 portlet 类或 JSP 中以编程方式确定其内容?
您可以通过下面的代码获取它
Portlet portlet = (Portlet)request.getAttribute(WebKeys.RENDER_PORTLET); String cssClassWrapper=portlet.getCssClassWrapper();