struts1.x 转发的配置:
struts1.x 转发的配置:
?
<action path="/person/list" parameter="op" validate="false">
??? <!--? 服务器内部请求转发? -->
??? <forward name="index" path="/index.jsp" />
??? <!--? 浏览器重定向的方式? -->
??? <forward name="index" redirect="true" path="/index.jsp" />
</action>
?