我正在从事Spring MVC控制器项目,在该项目中我从浏览器进行GET URL调用-
以下是我从浏览器发出GET调用的网址-
http://127.0.0.1:8080/testweb/processing?workflow=test&conf=20140324&dc=all
下面是在浏览器中调用后调用的代码-
@RequestMapping(value = "processing", method = RequestMethod.GET)
public @ResponseBody ProcessResponse processData(@RequestParam("workflow") final String workflow,
@RequestParam("conf") final String value, @RequestParam("dc") final String dc) {
System.out.println(workflow);
System.out.println(value);
System.out.println(dc);
// some other code
}
问题陈述:-
现在有什么方法可以从某些标头中提取IP地址吗?这意味着我想知道从哪个IP地址发出呼叫,这意味着无论谁在URL上方进行呼叫,我都需要知道其IP地址。这可能吗?