I am developing a project in Struts2. I am using java.util.Properties for some purpose. So how can I use this for parameter passing, For Example: My code is: class myprop extends ActionSupport{ private Properties myProp; public String execute() throws Exception{ myProp = new Properties(); myProp.put("a","a1"); myProp.put("b","b1");