在 Liferay 6.0 插件 MVC portlet 中,如何从 portlet 类访问 portlet 配置?
请注意,“配置”是指特定于 portlet 实例的值,而不是特定于用户的值;如果管理员设置了 portlet 配置值,它应该对所有用户生效。
例如:
public class MyPortlet extends MVCPortlet
{
@Override
public void doView(RenderRequest renderRequest, RenderResponse renderResponse)
throws IOException, PortletException
{
// Fill in the blank; what goes here?
String configValue = ?;
renderRequest.setAttribute("some-key", configValue);
super.doView(renderRequest, renderResponse);
}
}