密钥如何从tiles-def.xml中提取正确的资源

密钥如何从tiles-def.xml中提取正确的资源,xml,struts,tiles,struts-1,struts-config,Xml,Struts,Tiles,Struts 1,Struts Config,我有下面的代码片段,其中键是在tiles-def.xml中定义的。我想知道密钥如何正确映射到tiles-def.xml,而不是从application-resources.properties获取密钥的资源 struts-config.xml <action path="/POShowSearch" type="com.inx.omx.lc.web.actions.POShowSearchAction" scope="sessio

我有下面的代码片段,其中键是在tiles-def.xml中定义的。我想知道密钥如何正确映射到tiles-def.xml,而不是从application-resources.properties获取密钥的资源

struts-config.xml

<action
          path="/POShowSearch"
          type="com.inx.omx.lc.web.actions.POShowSearchAction"
          scope="session"
          name="ViewSearchFormPO"
          input="crp.lcpo.view">
<forward 
          name="Success"   
          path="crp.lcpo.view.result" redirect="false" />
</action>
tiles-def.xml

<definition name="crp.lcpo.view" extends="crp.main" >
        <put name="body" value="/po/poSearch.jsp" />
</definition>
<definition name="crp.lcpo.view.result" extends="crp.main" >
        <put name="body" value="/po/poViewList.jsp" />
</definition>

在TilesPlugin的帮助下,它是否会首先检查属性文件,如果没有找到,则会检查tiles def文件?