struts2为Action的属性注入值

通过节点注入

[java]  view plain  copy
  1. "setValue" class="blog.action.HelloWorld" method="add">  
  2.             "savePath">/path  
  3.   
  4.   
  5. package blog.action;  
  6.   
  7. import java.io.UnsupportedEncodingException;  
  8. import java.net.URLEncoder;  
  9.   
  10.   
  11.   
  12. public class HelloWorld {  
  13.       
  14.     private String savePath;  
  15.       
  16.     private String msg;  
  17.       
  18.     private String uname;  
  19.       
  20.     public String getUname() {  
  21.         return uname;  
  22.     }  
  23.   
  24.     public void setUname(String uname) {  
  25.         this.uname = uname;  
  26.     }  
  27.   
  28.     public String getMessage() {  
  29.         return msg;  
  30.     }  
  31.       
  32.       
  33.       
  34.     public String getSavePath() {  
  35.         return savePath;  
  36.     }  
  37.   
  38.     public void setSavePath(String savePath) {  
  39.         this.savePath = savePath;  
  40.     }  
  41.   
  42.     public String execute(){  
  43.             try {  
  44.                 uname = URLEncoder.encode("张三","UTF-8");//ISO8859-1  
  45.             } catch (UnsupportedEncodingException e) {  
  46.                 e.printStackTrace();  
  47.             }  
  48.           
  49.         msg = "This is my first struts2 application!!!";  
  50.         return "success";  
  51.     }  
  52.       
  53.     public String add(){  
  54.         return "message";  
  55.     }  
  56.   

  1. }  
  2. https://blog.csdn.net/xzf19901108/article/details/7771027

你可能感兴趣的:(struts2)