ForwardAction的使用

forward01.jsp

<body>
    This a struts forword01.jsp page. <br>
  </body>

 

配置文件

<action-mappings>
		<action path="/forword01"
			type="org.apache.struts.actions.ForwardAction"
			parameter="/forword01.jsp">
		</action>

 

forward02.jsp

<body>
    This a struts page. <br>
    <a href="forword01.do">forward01.jsp</a>
  </body>

你可能感兴趣的:(apache,jsp,struts)