gpt4 book ai didi

java - 在spring mvc中如何在 Controller 中获取上下文路径

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:05:28 24 4
gpt4 key购买 nike

我需要 Controller 中的应用程序上下文路径,我试过下面的代码会抛出 NULL POINTER EXCEPTION。

HttpServletRequest request;
String Path = request.getContextPath();

请帮帮我
谢谢

最佳答案

  1. 变量 request 已声明,但未声明初始化。难怪您会收到 NullPointerException

  2. 查看documentation访问不同的请求相关数据。

读完之后,确定要将代码绑定(bind)到 native Servlet API,试试这个:

@Controller
class MyController {

@RequestMapping
public void handleMe(HttpServletRequest request) {
String path = request.getContextPath();
}
}

关于java - 在spring mvc中如何在 Controller 中获取上下文路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17654333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com