我有下面的struts配置文件,我需要添加另一个“命名空间”(/ mservice)到同一个动作,在那个配置文件中我需要删除<param name="excludeNullProperties">false</param>
<struts>
<package name="com.web.mobile" namespace="/service" extends="mobile-default">
<action name="ticketSupport!*" class="com.web.mobile.TicketSupport"
method="{1}">
<result type="json">
<!-- This parameter should remove to the "/mservice" namesapce -->
<param name="excludeNullProperties">false</param>
</result>
<result name="input" type="json"/>
</action>
</package>
</struts>
我有两个移动应用程序,需要使用不同的参数调用相同的操作,我正在考虑维护2个struts配置文件,如何修改现有的配置文件以使用这两个应用程序?