如何在JSP中检查用户是否具有特定角色?
我需要在 JSP 中根据用户的角色做出决策。 是否有标签或 EL 表达式可以让我做到这一点?
I need to make decisions in a JSP based on the user's roles. Is there a tag or EL expression that lets me do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSP 或 JSTL 中没有内置任何标签库,而是 请求标签库 Jakarta 项目提供了
isUserInRole
标签。 安装 taglib,并像这样使用标签:There isn't one built into JSP or JSTL, but the request taglib from the Jakarta project provides an
isUserInRole
tag. Install the taglib, and use the tag like this: