如何在春季MVC控制器中获取呼叫中的IP地址?
2022-08-31 08:37:09
我正在研究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地址。这可以做到吗?