我正在尝试创建一个支持编辑和查看模式的liferay portlet。 我正在使用liferay源代码中提供的默认MVCPortlet。
我已经按如下方式配置了portlet.xml
<portlet>
<portlet-name>inline-portlet</portlet-name>
<display-name>inline</display-name>
<portlet-class>com.liferay.util.bridges.mvc.MVCPortlet</portlet-class>
<init-param>
<name>edit-jsp</name>
<value>/edit.jsp</value>
</init-param>
<init-param>
<name>view-jsp</name>
<value>/view.jsp</value>
</init-param>
<expiration-cache>0</expiration-cache>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>view</portlet-mode>
<portlet-mode>edit</portlet-mode>
</supports>
<portlet-info>
<title>inline</title>
<short-title>inline</short-title>
<keywords>inline</keywords>
</portlet-info>
<security-role-ref>
<role-name>administrator</role-name>
</security-role-ref>
<security-role-ref>
<role-name>guest</role-name>
</security-role-ref>
<security-role-ref>
<role-name>power-user</role-name>
</security-role-ref>
<security-role-ref>
<role-name>user</role-name>
</security-role-ref>
</portlet>
当我部署它时,我无法看到在编辑模式下创建的任何新标签,当我们点击像图标这样的扳手时。
我缺少任何配置吗?我已经在根目录中有edit.jsp和view.jsp。视图是一致的,但是找不到edit.jsp,换句话说它没有被调用。
有关于此的任何想法吗?
答案 0 :(得分:2)
我认为Liferay中的portlet编辑模式称为“首选项”
答案 1 :(得分:2)
您是否在portlet.xml
中添加了编辑模式?像这样?
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>view</portlet-mode>
<portlet-mode>edit</portlet-mode>
<portlet-mode>help</portlet-mode>
</supports>
必须在portlet.xml
的配置的这一部分中显式设置portlet使用的所有模式,并且必须对所需的所有portlet执行此操作而不是查看模式。
你也可以在你的班级写一个这样的模式处理程序,只需实现PortletListener
它至少可以用于调试。
public void handleResourceRequest(ResourceRequest request,
ResourceResponse response,
Window window) {
// Switch the view according to the portlet mode
if (request.getPortletMode() == PortletMode.EDIT){
this.addWindow(editWindow);
}else if (request.getPortletMode() == PortletMode.VIEW){
window.setContent(viewContent);
}else if (request.getPortletMode() == PortletMode.HELP)
window.setContent(helpContent);
}
同时检查portlet权限,你是否尝试过管理员?他们应该看到它,不管是什么。另一方面,普通用户应该有权设置特定portlet的首选项。
干杯
答案 2 :(得分:2)
如果使用编辑模式创建自定义portlet,则此模式不会显示在配置图标下方的选项卡下,如Liferay的默认portlet。相反,您的编辑模式的JSP可以通过一个名为Preferences的新图标访问。
portlet规范仅定义了VIEW,EDIT和HELP模式,但允许将自定义portlet模式添加到列表中。这正是Liferay为其默认portlet所做的。他们使用CONFIG自定义portlet模式。有关如何实现此操作的示例,请选中this thread's last post。
答案 3 :(得分:1)
您必须创建实现
的类com.liferay.portal.kernel.portlet.ConfigurationAction
并且您必须在portlet节点中的liferay-portlet.xml
中注册它。
<portlet>
<portlet-name>MyPortlet</portlet-name>
<configuration-action-class>com.mydomain.MyConfigurationAction</configuration-action-class>
</portlet>
答案 4 :(得分:0)
根据您的情况,除了portlet.xml
配置外,您还需要在类中实施可以扩展doView
的{{1}},doEdit
和processAction
方法。 “Liferay in Action”一书有一个很好的例子。
或者你可以在Liferay的jsp文件和taglibs中完成所有逻辑。单击“首选项”可以使用编辑模式。