Websphere Portlet 应用程序 'Title' 存储在哪里

Where is a Websphere Portlet Application 'Title' stored

我正在使用 Websphere (6.1) 门户管理页面。我展开“Portlet 管理”菜单并单击 'Applications'。我看到了一个 portlet 应用程序列表,但其中一些在标题栏中显示 "Application Name not available for this Application"。门户应用程序 'Application Name' 应该存储在哪里才能显示在此列表中?

那将是 portlet.xml 中 portlet-app 元素的 id 属性。在下面的示例中,这将是 "com.test.portlets.testportlet.TestPortlet".

<?xml version="1.0" encoding="UTF-8"?>
<portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" version="2.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" 
    id="com.test.portlets.testportlet.TestPortlet">
    <portlet>
        <portlet-name>TestPortlet</portlet-name>
        <display-name>TestPortlet</display-name>
        <display-name xml:lang="en">TestPortlet</display-name>
        <portlet-class>com.test.portlets.testportlet.TestPortlet</portlet-class>
        <init-param>
            <name>wps.markup</name>
            <value>html</value>
        </init-param>
        <expiration-cache>0</expiration-cache>
        <supports>
            <mime-type>text/html</mime-type>
            <portlet-mode>view</portlet-mode>
        </supports>
        <supported-locale>en</supported-locale>
        <resource-bundle>com.test.portlets.testportlet.nl.TestPortletResource</resource-bundle>
        <portlet-info>
            <title>TestPortlet</title>
            <short-title>TestPortlet</short-title>
            <keywords>TestPortlet</keywords>
        </portlet-info>
    </portlet>
</portlet-app>