我是spring mvc的新手。我重定向到下面的 payu 网站是我的控制器方法
return new ModelAndView("redirect:https://test.payu.in/_payment",model);
通过模型对象发送的所有参数
model.put("amount", amount);
model.put("productinfo",productInfo);
model.put("firstname",fname);
model.put("email", email);
model.put("phone","1234541589");
model.put("surl",successUrl);
model.put("furl",failureUrl);
model.put("udf1",udf1);
model.put("udf2",udf2);
model.put("txnid",txnid.toString());
model.put("key", "gtKFFx");
model.put("hash", hash);
所有具有值的参数。