0

在 Liferay IDE 中创建 portlet 时,我已将其配置为具有 Liferay 的配置模式。作为响应,向导创建了具有以下文本的 JSP 文件:

<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>

<portlet:defineObjects />

This is the <b>MyPortlet</b> portlet in Config mode.

如何从 Liferay 调用此页面以查看此文本?单击扳手图标并选择时,Configuration我看不到任何类似的东西。

更新

路径设置正确,因为它是由向导设置的。

问题是如何通过鼠标从 Web 界面调用这个 JSP?

4

2 回答 2

1

通常问题是配置jsp的路径没有正确设置。

portlet.xml

添加以下内容:

<init-param>
    <name>config-template</name>
    <value>/path/to/configuration.jsp</value>
</init-param>

作为<portlet>与您尝试修改的 portlet 对应的元素的子元素。

你的最终结果portlet.xml应该是这样的:

<portlet-app>
    <portlet>
        <portlet-name>my-portlet</portlet-name>
        <display-name>My Portlet</display-name>
        <portlet-class>com.liferay.portlet.StrutsPortlet</portlet-class>
        <init-param>
            <name>config-template</name>
            <value>/path/to/configuration.jsp</value>
        </init-param>
        <init-param>
            <name>view-action</name>
            <value>/my_portlet/view</value>
        </init-param>
        <expiration-cache>0</expiration-cache>
        <supports>
            <mime-type>text/html</mime-type>
        </supports>
    </portlet>
</portlet-app>
于 2013-04-19T18:32:45.877 回答
1

来自 wiki(不过在这里并不感到羞耻,我花了很长时间才找到它):

将配置页面添加到插件 Portlet <- 在此处获取更多信息

liferay-portlet.xml->

    <portlet>
      <portlet-name>configuration-example</portlet-name>
      <icon>/icon.png</icon> 
      <configuration-action-class>com.sample.jsp.action.ConfigurationActionImpl</configuration-action-class> 
      <instanceable>true</instanceable> 
      <header-portlet-css>/css/test.css</header-portlet-css> 
      <footer-portlet-javascript>/js/test.js</footer-portlet-javascript> 
    </portlet>

ConfigurationActionImpl.java(或你的类)->

    public class ConfigurationActionImpl implements ConfigurationAction {
        public void processAction(PortletConfig config, ActionRequest actionRequest, ActionResponse actionResponse) throws Exception { 

          String portletResource = ParamUtil.getString(actionRequest, "portletResource"); 

          PortletPreferences prefs = PortletPreferencesFactoryUtil.getPortletSetup(actionRequest, portletResource); 

          //Read, validate, and then set form parameters as portlet preferences

          prefs.store();

          SessionMessages.add(actionRequest, portletConfig.getPortletName() + ".doConfigure");
        }
        public String render(PortletConfig config, RenderRequest renderRequest, RenderResponse renderResponse) throws Exception { 

        return "/configuration.jsp";
        }
    }

配置.jsp

    <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %>
    <%@ taglib uri="http://liferay.com/tld/portlet" prefix="liferay-portlet" %>

    <portlet:defineObjects />

    <form action="<liferay-portlet:actionURL portletConfiguration="true" />" method="post" name="<portlet:namespace />fm"> <input name="<portlet:namespace /><%=Constants.CMD%>" type="hidden" value="<%=Constants.UPDATE%>" /> 

    Type: <select name="<portlet:namespace />type"> <option value="casual">Casual</option> <option value="formal">Formal</option> </select> <br/>

    <input type="button" value="Save" onClick="submitForm(document.<portlet:namespace />fm);" /> </form>

“注意 liferay-portlet:actionURL 标记中的 portletConfiguration 属性。”

于 2014-01-15T17:59:45.743 回答