我正在尝试创建一个在WebSphere Portal 7上运行的简单Struts 2 JSR 286 Portlet。我能够显示一个简单的JSP,其中包含一个调用操作的链接并显示另一个接受输入的JSP。这很好。
但是,当我尝试使用redirectAction
时,我开始遇到问题。我没有看到任何错误消息,但重定向似乎不起作用。 Portlet只显示一个空白页面。
在调试时我注意到我的Portlet类的doView
方法从未被调用过,这似乎非常可疑。
如果有人有在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>
的web.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操作。因此,当我调用action“redirectToIndex”时,它会尝试显示一个名为“/view/index.action”的页面。我通过使用该路径创建文件来验证这一点,果然,该文件的内容显示在portlet中。
我觉得我可能错过了一些配置选项,但我不确定是什么。 Servlet过滤器可能吗?有人可以帮忙吗?
答案 0 :(得分: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
,defaultViewAction
init-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/docs/portlet-plugin.html。