Spring IoC と Struts を Web アプリ フレームワークとして使用します。プレゼンテーション層にはヘルパー クラスがあり、リクエストからいくつかのものを読み取り、いくつかのデータをアクションや他のクラスが使用するリクエスト属性として設定します。したがって、このクラスにはリクエスト オブジェクト (HttpServletRequest) が必要であり、これには ServletActionContext.getRequest() を使用します。
ヘルパー クラスはリクエスト スコープの Spring Bean であり、すべてのリクエストに対して呼び出されます。データのロードは、ヘルパーの Spring Bean で「init-method」として構成されたメソッドで行われます。アクションも Spring Bean です。
struts.xml では、Spring で構成されたアクション Bean を名前で参照します。例:
<action name="myAction" class="actionBeanNameFromSpring">
<result>myResult.jsp</result>
</action>
この場合、ヘルパーの ServletActionContext.getRequest() メソッドは適切なリクエスト オブジェクトを返します。ただし、XML には、アクション Bean の代わりにアクション クラスを直接参照する他のアクションがあります。つまり、Spring をバイパスします。これらの場合、リクエストは null として出力されます。
これに対する解決策は、Spring Bean を参照するように XML のすべてのアクション エントリを変更することであることがわかりました。しかし、なぜこれが正確に起こるのか知りたいです。私の知る限り、ServletActionContext は Struts のものであり、Struts によって完全に処理されます。Spring を通過する (つまり、Spring アクション Bean を使用する) と、Spring を通過しない (つまり、Action クラス名を使用する) と、どのようにコンテキストが設定されるのでしょうか?
@ローマン
コンテンツ全体が不要であると想定しています。以下に関連する部分を示します。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
....
<!-- the helper which accesses request -->
<bean id="myActionHelper" class="com.company.product.webapp.package.MyActionHelper" init-method="init" scope="request">
<property name="someSvcBean" ref="someSvcBean" />
</bean>
....
<!-- a typical action -->
<bean id="myAction" class="com.company.product.webapp.action.MyAction" scope="request">
</bean>
....
</beans>