[Seasar-user:17441] Re: [S2Container][SAStruts]セッション格納の値について
Hiroshi Yamamoto
[E-MAIL ADDRESS DELETED]
2009年 5月 13日 (水) 23:03:16 JST
山元です。
小林 (koichik)さんに教えていただいた方法にて解決しました。
下記の様に対応しました。
<initMethod name="addCustomizer">
<arg>
<component class="org.seasar.framework.container.customizer.AspectCustomizer">
<initMethod name="addInterceptorName">
<arg>"authenticationInterceptor"</arg>
</initMethod>
<initMethod name="addIgnoreClassPattern">
<arg>"hoge.action"</arg>
<arg>"LoginAction"</arg>
</initMethod>
<property name="useLookupAdapter">true</property>
</component>
</arg>
</initMethod>
小林 (koichik)さん、ひがさん、ありがとうございました。
以上になります。
2009/05/13 19:30 Koichi Kobayashi <[E-MAIL ADDRESS DELETED]>:
> 小林 (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 mailing list
> [E-MAIL ADDRESS DELETED]
> https://ml.seasar.org/mailman/listinfo/seasar-user
>
Seasar-user メーリングリストの案内