1

portletModeParameterHandlerMapping を使用していない場合、parameterMappingInterceptor の動作をシミュレートする方法があるかどうか疑問に思っています。もちろん、私は注釈付きのアプローチを使用しています。次のように portlet.xml を定義しようとしました。

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:webflow="http://www.springframework.org/schema/webflow-config"
   xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
        http://www.directwebremoting.org/schema/spring-dwr 
        http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd        
        http://www.springframework.org/schema/webflow-config 
        http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.0.xsd        
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<context:component-scan base-package="es.xunta.formacion.sifo3.economico.web.controllers"/>

<bean id="parameterMappingInterceptor" class="org.springframework.web.portlet.handler.ParameterMappingInterceptor"/>  

</beans>

しかし、明らかに、これはまったく機能していません。render メソッドにアクセスするには、render フェーズでアクション パラメータを設定する必要があります。

@RequestMapping(params = "action=myAction")
public final void doAction(@ModelAttribute(value = "myAttribute") MyBean myBean, Errors errors, ActionRequest actionrequest, ActionResponse actionresponse) {
validateBean(escrituraBean, errors);
//..
actionresponse.setRenderParameter("action", actionrequest.getParameter("myAction"));
}

@RequestMapping(params = "action=myAction")
public final String doRender(ModelMap model, RenderRequest renderrequest) {
//..
}

編集:これでxmlを構成しようとしました:

<bean id="annotationMapper" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<property name="interceptors">
    <list>
                <bean id="parameterMappingInterceptor" class="org.springframework.web.portlet.handler.ParameterMappingInterceptor"/>  
    </list>
</property>
</bean> 

この例外の取得:

 Interceptor type not supported: org.springframework.web.portlet.handler.ParameterMappingInterceptor
4

0 に答える 0