在下面的Spring 3.1操作中,我要做一些事情并将属性添加到POST请求,然后通过POST将其重定向到外部URL(我不能使用GET)。
@RequestMapping(value = "/selectCUAA", method = RequestMethod.POST)
public ModelAndView selectCUAA(@RequestParam(value="userID", required=true) String cuaa, ModelMap model) {
//query & other...
model.addAttribute(PARAM_NAME_USER, cuaa);
model.addAttribute(... , ...);
return new ModelAndView("redirect:http://www.externalURL.com/", model);
}
但是使用此代码时,将使用GET方法(属性附加到http://www.externalURL.com/)。我该如何使用POST方法?它是外部URL的强制性。
答案 0 :(得分:3)
您无法使用POST重定向。您可以使用Java代码发送POST请求,并在操作中使用类似HttpURLConnection的类。
答案 1 :(得分:3)
就像@stepanian所说,你不能用POST重定向。 但是解决方法很少:
HTML:
<form name="myRedirectForm" action="https://processthis.com/process" method="post">
<input name="name" type="hidden" value="xyz" />
<input name="phone" type="hidden" value="9898989898" />
<noscript>
<input type="submit" value="Click here to continue" />
</noscript>
</form>
<script type="text/javascript">
$(document).ready(function() {
document.myRedirectForm.submit();
});
</script>