spring mvc @SessionAttributes 未正确绑定

发布于 2025-01-08 11:31:36 字数 452 浏览 0 评论 0原文

我有一个像这样的 Portlet 控制器。这里我将一个变量绑定到Session。之后,它重定向到另一个控制器并呈现 jsp 。

@SessionAttributes({"attrName"})
public class Controller{
public void manage(ModelMap modelMap)  {
modelMap.addAttribute("attrName", true)
response.sendRedirect(URL_CONTROLLER_2);
}
}

所以这会重定向到另一个呈现 jsp 的控制器。 在jsp中,当我这样做时:

alert("${attrName}")

我得到null。 为什么我看不到该属性。 即使当我调试并检查控制器#2 中的 ModelMap 时,会话中也不存在属性“attrName”。

I have a Portlet controller like this. Here I bind a variable to Session. After that it redirects to another controller and renders the jsp .

@SessionAttributes({"attrName"})
public class Controller{
public void manage(ModelMap modelMap)  {
modelMap.addAttribute("attrName", true)
response.sendRedirect(URL_CONTROLLER_2);
}
}

So this redirects to another controller that renders the jsp.
In jsp when I do:

alert("${attrName}")

I get null.
Why am I not able to see the attribute.
Even when I debug and I check ModelMap in controller # 2, the attribute "attrName" is not present in session.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你的占有欲 2025-01-15 11:31:36

AFAIK 这是预期的行为,因为 @SessionAttributes 不在不同的控制器之间共享。一旦调用下一个控制器,以这种方式保存的属性就会从会话中删除。

AFAIK it's an expected behaviour because @SessionAttributes are not shared among different controllers. Attributes saved this way will be removed from session as soon as next controller is called.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文