如何从设置值到带有的参数

发布于 2024-12-04 06:55:23 字数 570 浏览 0 评论 0原文

我的 jsp 页面有问题。我使用 Spring security,我需要获取经过身份验证的用户的名称,为此我使用下一个标签,

 <security:authentication property="name" />

我需要将此值与其他字符串进行比较,我该怎么做? 我以为我可以将此值设置为某个参数

<c:set var="userName" value="<security:authentication property='name'/>"scope="page" />

,然后比较我的值,

<c:when test="${(params.userSelect.login eq pageScope.userName)}">

但这不起作用。我从 获取名称(我可以在 jsp 页面上查看它),但我无法比较这个值。

I have a problem in my jsp page. I use Spring security and I need to get a name of the authentificated user, for this I use the next tag

 <security:authentication property="name" />

I need to compare this value with other String, how can I do this?
I thought I can set this value to some parameter like

<c:set var="userName" value="<security:authentication property='name'/>"scope="page" />

and then to compare my values

<c:when test="${(params.userSelect.login eq pageScope.userName)}">

but this doesn't work. I get the name from <security:authentication property="name" /> (I can view it on jsp page), but I can't compare this values.

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

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

发布评论

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

评论(1

叫思念不要吵 2024-12-11 06:55:23

c:set可以将body中的内容作为值。

<c:set var="userName"><security:authentication property="name" /></c:set>

c:set can take the content of the body in as the value.

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