4./Struts2_1500_ResultType
ResultType共九种类型:
dispatcher 默认方式,服务器端跳转(客户端发起请求,访问url地址,服务器在客户端不知道的情况下发起请求,另外一个页面返回)
只能跳转到页面:JSP、Html、freemarker,不能是action 重点
redirect 客户端跳转到视图(客户端发起请求,访问url地址,反馈给浏览器,浏览器重新发起请求到另一个),
直接访问JSP等 重点
chain :forward action
redirectAction:客户端跳转到Action
—————— 主要了解以上四个
freemarker
httpheader http头信息
stream 下载,result类型
velocity 类似于freemarker
xslt xml修饰
plaintext 显示页面源码(教学网站)
tiles 分块
<action name="r1">
<result type="dispatcher">/r1.jsp</result> /Struts2_1500_ResultType/r/r1
</action>
<action name="r2">
<result type="chain">/r2.jsp</result> /Struts2_1500_ResultType/r2.jsp
</action>
<action name="r3">
<result type="chain">r3</result> /Struts2_1500_ResultType/r/r3
</action>