簡體   English   中英

沒有出現控制面板Portlet的配置頁面

[英]Configuration page of control panel portlet does not appear

我創建了一個Liferay控制面板portlet,該portlet可以很好地工作。 現在,我要添加一個配置頁面。 我做了如下:

  1. 將config-template初始化參數添加到portlet.xml
  2. 將configuration-action-class添加到liferay-portlet.xml

但是,配置菜單不會出現:

配置未出現

這是兩個描述符。

portlet.xml

<portlet>
    <portlet-name>manage-apples-portlet</portlet-name>
    <display-name>Apple Management Admin</display-name>
    <portlet-class>de.apples.portlet.ManageApplesPortlet</portlet-class>
    <init-param>
        <name>config-template</name>
        <value>/html/manage-apples-portlet/config.jsp</value>
    </init-param>
    <init-param>
        <name>view-jsp</name>
        <value>/html/manage-apples-portlet/view.jsp</value>
    </init-param>
    <init-param>
        <name>jsp-path</name>
        <value>/html/manage-apples-portlet/</value>
    </init-param>
    <expiration-cache>0</expiration-cache>
    <supports>
        <mime-type>text/html</mime-type>
    </supports>
    <resource-bundle>content.Language</resource-bundle>
    <security-role-ref>
        <role-name>administrator</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>

liferay-portlet.xml

<portlet>
    <portlet-name>manage-apples-portlet</portlet-name>
    <icon>/icon.png</icon>
    <configuration-action-class>com.liferay.portal.kernel.portlet.DefaultConfigurationAction</configuration-action-class>
    <control-panel-entry-category>content</control-panel-entry-category>
    <control-panel-entry-weight>10.0</control-panel-entry-weight>
    <instanceable>false</instanceable>
    <css-class-wrapper>manage-apples-portlet</css-class-wrapper>
</portlet>

我想念什么嗎?

乍一看,我在support元素中看不到portlet模式,我認為您應該添加

<portlet-mode>view</portlet-mode>
<portlet-mode>edit</portlet-mode>

內部支持portlet.xml的元素。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM