通配符在struts.xml中的使用

引用*的内容时我们可以使用形如{1}的方式,需要特别提醒的是,{1}可以使用多次,而不仅仅只能使用一次。因为{1}表示的是引用的是第一个星号的内容,

代码如下:

<action name="home_*" class="homeAction" method="{1}">
          <result name="{1}">/WEB-INF/jsp/homeAction/{1}.jsp</result>
  </action>

你可能感兴趣的:(通配符在struts.xml中的使用)