如何从设置值到带有的参数
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
c:set可以将body中的内容作为值。
c:set can take the content of the body in as the value.