struts2中result的type属性

1、type="dispatcher" 为默认,用于jsp页面跳转 

/index.jsp  

完整的写法为: 

  
     /index.jsp  
 

2、type="redirect" 重定向到jsp、action、外部网址 
 

/index.jsp  
/login.do  
http://www.baidu.com 

重定向时带参数处理方法: 

(1).type="redirect":  

/login.do?userId=${userId }  

(2).type="redirect-action":  
见3 

3、type="redirect-action" 重定向到另外一个action  
 

  
     login.do 重定向action名 
     userId带的参数 
 


4、type="chain" 用于action跳转。   
 

  
     action2.do  
  
  
     login.jsp  
 


5、type="plaintext" 跳转显示源代码 
 

  
    具体的位置  
    字符规范(如GBK)  
 

 

你可能感兴趣的:(struts2,struts.xml,result标签,type属性)