我正在使用Websphere(6.1)门户网站管理页面。我展开了“Portlet管理”菜单,然后点击“应用程序”。我看到了一个portlet应用程序列表,但其中一些显示了"应用程序名称不适用于此应用程序"在标题栏中。门户网站应用程序'应用程序名称'应该存储以便显示在此列表中?
答案 0 :(得分:1)
这将是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>