[Seasar-user:17437] Re: [S2Container][SAStruts]セッション格納の値について

Koichi Kobayashi [E-MAIL ADDRESS DELETED]
2009年 5月 13日 (水) 19:30:09 JST


小林 (koichik) です.

Date:    Wed, 13 May 2009 18:56:34 +0900
From:    Hiroshi Yamamoto <[E-MAIL ADDRESS DELETED]>
To:      [E-MAIL ADDRESS DELETED]
Subject: [Seasar-user:17435] Re: [S2Container][SAStruts]セッション格納の値について

> 上記のInterceptorをログイン用のAction以外へ適用しています。
> このInterceptorにDIされるDtoがActionのDtoとインスタンスが別なようです。
> 
> 勝手な想像ですが、InterceptorのライフサイクルとDtoのライフサイクルの
> 違いによるものでしょうか?
> Hotだと毎回再生成されるから適用出来たけどCoolではそうではないので
> うまくいかないとか?

そのようですね.
以下のように useLookupAdapter を true に設定
してください.

http://www.seasar.org/wiki/index.php?FAQ%2FS2AOP#q69751d4

CustomizerChain#addAspectCustomizer を使っている
場合は,ポイントカットを指定していなければ第 2 引数,
ポイントカットを指定していれば第 3 引数で true を
設定してください.

<initMethod name="addAspectCustomizer">
  <arg>"xxxInterceptor"</arg><!-- interceptorName -->
  <arg>true</arg><!-- useLookupAdapter -->
</initMethod>

または

<initMethod name="addAspectCustomizer">
  <arg>"xxxInterceptor"</arg><!-- interceptorName -->
  <arg>".*"</arg><!-- pointcut -->
  <arg>true</arg><!-- useLookupAdapter -->
</initMethod>


-- 
<component name="koichik">
    <property name="fullName">"Koichi Kobayashi"</property>
    <property name="email">"[E-MAIL ADDRESS DELETED]"</property>
    <property name="blog">"http://d.hatena.ne.jp/koichik"</property>
</component>



Seasar-user メーリングリストの案内