如何正确获取liferay portlet中的页面组织?
我试过了:
公司。不是组织,而是门户网站实例。
组。是当前用户的组,而不是当前页面。
更新
我在portlet类'doView
方法中。我知道如何将我在此处获得的任何内容传递给JSP,以便通过EL/JSTL
访问。
更新2
group.getOrganizationId()
总是返回零。
更新3
这段代码我用来准备变量
private void storeVariables(RenderRequest renderRequest) {
PortletPreferences prefs = renderRequest.getPreferences();
String image_id = (String) prefs.getValue("image_id", "communicator");
ThemeDisplay themeDisplay = (ThemeDisplay)renderRequest.getAttribute(WebKeys.THEME_DISPLAY);
Company company = themeDisplay.getCompany();
Group group = themeDisplay.getScopeGroup();
log.info("group = {}", group);
long organizationId = group.getOrganizationId();
log.info("organizationId = {}", organizationId);
PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();
String contextPath = renderRequest.getContextPath();
if( !contextPath.endsWith("/") ) {
contextPath = contextPath + "/";
}
renderRequest.setAttribute("images", images);
renderRequest.setAttribute("image", images.get(image_id));
renderRequest.setAttribute("image_id", image_id);
renderRequest.setAttribute("themeDisplay", themeDisplay);
renderRequest.setAttribute("portletDisplay", portletDisplay);
renderRequest.setAttribute("contextPath", contextPath);
}
更新3
JSP中的以下代码返回空字符串
<!-- scopeGroupId = <c:out value="${scopeGroupId}"/> -->
答案 0 :(得分:3)
组是内容和页面的容器,它是站点,布局范围,登台等的内部实体。
在Liferay 6.1中,站点(以前版本中称为社区)可以与组织相关联。这取决于你所处的位置(在JSP中,在portlet类中等),但是,如果你有代表当前组的实体,你可以写这样的东西:
Organization organization = null;
if (group.isOrganization()) {
organization = OrganizationLocalServiceUtil.getOrganization(group.getOrganizationId());
}
希望它有所帮助。询问您是否需要帮助才能检索Group对象...