2

我正在尝试创建一个在 WebSphere Portal 7 上运行的简单 Struts 2 JSR 286 Portlet。我能够显示一个简单的 JSP,其中包含一个调用动作的链接并显示另一个接受输入的 JSP。这很好用。

但是,当我尝试使用redirectAction. 我没有看到任何错误消息,但重定向似乎不起作用。Portlet 只显示一个空白页面。

在调试时,我注意到doView我的 Portlet 类的方法从未被调用,这似乎很可疑。

如果有人有在 WebSphere Portal 上开发 Struts 2 Portlet 的经验,我将不胜感激在检查我的配置文件是否正确方面提供的帮助。我错过了什么吗?

以下是详细信息:

WebSphere Portal 7.0.0.2
WebSphere Application Server 7.0.0.25
RAD 8.0.4
Struts 2.3.14.2
Windows 7

portlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
<portlet-app id="com.ibm.demo.jsr286.TopUpPortlet.72594d5fe3" 
version="2.0" 
xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd" 
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">
<portlet>
    <description xml:lang="EN">Demo JSR 286 Struts Portlet</description>
    <portlet-name>Demo Portlet</portlet-name>
    <display-name>Demo Portlet</display-name>

    <!-- DemoPortlet extends org.apache.struts2.portlet.dispatcher.Jsr286Dispatcher -->
    <portlet-class>com.demo.jsr286.DemoPortlet</portlet-class>

    <init-param>
        <name>viewNamespace</name>
        <value>/view</value>
    </init-param>

    <init-param>
        <name>defaultViewAction</name>
        <value>index</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>

    <portlet-info>
        <title>Demo Portlet</title>
        <short-title>DemoPortlet</short-title>
        <keywords>Demo Portlet</keywords>
    </portlet-info>

</portlet>

<default-namespace>http://JSR286StrutsDemo/</default-namespace>
</portlet-app>

网页.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<display-name>JSR 286 Struts Demo</display-name>

<servlet id="Struts2PortletDispatcherServlet">
    <servlet-name>Struts2PortletDispatcherServlet</servlet-name>
    <servlet-class>org.apache.struts2.portlet.dispatcher.DispatcherServlet</servlet-class>
</servlet>

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
</welcome-file-list>

</web-app>

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="struts-plugin.xml"/>

<package name="view" extends="struts-portlet-default" namespace="/view">

    <!-- This action works  -->     
    <action name="index">
        <result>/html/view/index.jsp</result>
    </action>

    <!-- This action works  -->
    <action name="startDemo">
        <result>/html/view/demo.jsp</result>
    </action>

            <!-- This action does not work  -->
    <action name="redirectToIndex">
        <result type="redirectAction">
            <param name="actionName">index</param>
            <param name="namespace">/view</param>
            <param name="portletMode">view</param>
        </result>
    </action>

</package>

</struts>

* 更新 *

我已经稍微缩小了问题的范围。看起来该操作被解释为文件位置而不是 struts 操作。因此,当我调用操作“redirectToIndex”时,它会尝试显示一个名为“/view/index.action”的页面。我通过使用该路径创建一个文件来验证这一点,果然,该文件的内容显示在 portlet 中。

我觉得我可能缺少一些配置选项,但我不确定是什么。Servlet过滤器可能吗?任何人都可以帮忙吗?

4

1 回答 1

1

实际上你不需要doView方法,因为Jsr286Dispatcher它只是一个调度程序。您可以像在普通 Struts2 应用程序中一样使用操作。

从文档中:

portlet-class 元素始终是 org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher(或者一个子类,如果您添加了一些自定义功能)。这是充当 Struts 2 框架的调度程序的 portlet,并将传入的用户交互转换为 Struts 2 可以理解的操作请求。

对于 jsr286 规范<portlet-class>应该是org.apache.struts2.portlet.dispatcher.Jsr286Dispatcher并且defaultViewActioninit-param 将调用 Struts2 动作。并且在struts.xml文件中,像通常一样,您可以定义动作类+方法来调用。

因此,您需要定义Jsr286Dispatcher<portlet-class>创建将在struts.xml操作定义中使用的操作。

另请参阅这两个链接:http ://struts.apache.org/development/2.x/docs/struts-2-portlet-tutorial.html和http://struts.apache.org/development/2.x/文档/portlet-plugin.html

于 2013-06-14T20:06:28.527 回答