2

WebSphere Portal 7 で実行する単純な Struts 2 JSR 286 ポートレットを作成しようとしています。アクションを呼び出すリンクを含む単純な JSP を表示し、入力を受け入れる別の JSP を表示できます。それはうまくいきます。

ただし、を使用しようとすると、問題が発生し始めますredirectAction。エラー メッセージは表示されませんが、リダイレクトが機能していないようです。ポートレットに空白のページが表示されるだけです。

これをデバッグしているときdoViewに、ポートレット クラスのメソッドがまったく呼び出されていないことに気付きました。これは非常に疑わしいと思われます。

WebSphere Portal で Struts 2 ポートレットを開発した経験のある方がいらっしゃいましたら、構成ファイルが正しいことを確認していただけると幸いです。私は何かを逃しましたか?

詳細は次のとおりです。

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

ポートレット.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 アクションではなく、ファイルの場所として解釈されているようです。そのため、アクション「redirectToIndex」を呼び出すと、「/view/index.action」というページを表示しようとします。そのパスでファイルを作成してこれを確認したところ、確かに、そのファイルの内容がポートレットに表示されました。

おそらくいくつかの設定オプションが欠けているように感じますが、何がわからないのですか。おそらくサーブレットフィルター?誰でも助けることができますか?

4

1 に答える 1

1

は単なるディスパッチャdoViewであるため、実際にはメソッドは必要ありません。Jsr286Dispatcher通常の Struts2 アプリケーションと同じようにアクションを使用できます。

ドキュメントから:

portlet-class 要素は常に org.apache.struts2.portlet.dispatcher.Jsr168Dispatcher (または、カスタム機能を追加した場合はサブクラス) です。これは、Struts 2 フレームワークのディスパッチャとして機能するポートレットであり、受信したユーザー インタラクションを Struts 2 が理解するアクション リクエストに変換します。

jsr286 仕様の<portlet-class>場合org.apache.struts2.portlet.dispatcher.Jsr286DispatcherdefaultViewActioninit-param は Struts2 アクションを呼び出します。ファイルでstruts.xmlは、通常どおり、アクション クラス + 呼び出すメソッドを定義できます。

したがって、アクション定義で使用するアクションとして定義Jsr286Dispatcher<portlet-class>て作成する必要がありますstruts.xml

次の 2 つのリンクも参照してください: http://struts.apache.org/development/2.x/docs/struts-2-portlet-tutorial.htmlおよびhttp://struts.apache.org/development/2.x/ docs/portlet-plugin.html .

于 2013-06-14T20:06:28.527 に答える