与 Portlet 类中的 Liferay Portlet 配置进行交互
在 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);
}
}
In a Liferay 6.0 plugin MVC portlet, how do I access the portlet configuration from the portlet class?
Note that by "configuration" I mean values that are specific to an instance of the portlet and are not user-specific; if an administrator sets a portlet configuration value, it should take effect for all users.
e.g.:
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);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以利用 Liferay 的
PortletPreferences
服务来完成此操作:这有点令人困惑,因为它被命名为
PortletPreferences
(隐含用户特定的首选项),而不是像PortletConfiguration
这样的名称>(暗示管理员控制的全局配置)...所以只需将其视为不特定于任何用户的 portlet 实例的首选项。You can leverage Liferay's
PortletPreferences
service to accomplish this:It's a little confusing because it's named
PortletPreferences
(implies user-specific preferences) instead of something likePortletConfiguration
(implies admin-controlled global configuration)... so just think of it as preferences for the portlet instance that are not specific to any user.