spring mvc @SessionAttributes 未正确绑定
我有一个像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.