如何访问不同 jspx 中的会话?
我是 jspx 的新手,我不知道该怎么做。我创建了一个模型视图控制器,并在控制器中创建了一个会话。用户登录后,就会创建会话。
HttpSession session = request.getSession();
session.setAttribute("user", username);
我如何在welcome.jspx页面中访问并显示用户名,所以它会说
hello username
I'm new to jspx and I'm not sure how I would do this. I have created a model-view-controller and have created a session in controller. Once the user has logged in, it creates the session.
HttpSession session = request.getSession();
session.setAttribute("user", username);
How can I access and display the username in the welcome.jspx page, so it would say
hello username
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 EL 访问它。
为了防止通过用户名进行 XSS 攻击,请使用 JSTL
显示它,以便XML 特殊字符被转义:Use EL to access it.
To prevent XSS attacks by username, show it using JSTL
<c:out>
so that XML special characters are escaped:尝试这样的事情(对于 JSP):
我在这里使用了 scriptlet 标签。您可以从这里学习它。
(也许它可以帮助别人。)
Try something like this (For JSP):
I have used scriptlet tag here. You can study about it from here .
(may be it could help someone else.)