我打算使用Struts2 Documentation中建議的refreshModelBeforeResult
,但我很困惑這個屬性是否可以在Action類中設置或者是struts.xml
。是否有什麼事情除了我曾嘗試下面如何在ModelDriven攔截器中設置refreshModelBeforeResult?
<action name="myAction" class="com.stuff.MyActionClass" method="myMethod">
<result name="myHome" type="tiles">MyHome</result>
<interceptor-ref name="basicStack" />
<interceptor-ref name="params"/>
<interceptor-ref name="modelDriven">
<param name="refreshModelBeforeResult">true</param>
</interceptor-ref>
</action>
在攔截器堆棧中,檢查默認配置 - http://struts.apache.org/docs/interceptors.html#Interceptors-TheDefaultConfiguration。 –
我想你想要這個:http://stackoverflow.com/a/27702918/1654265 –
這可能是有用的http://stackoverflow.com/a/23842272/573032 –