如何尝试将 sec:loggedInUserInfo 写入 gsp 中的变量中

发布于 2024-11-09 22:18:31 字数 222 浏览 0 评论 0原文

我想获取 sec:loggedInUserInfo 的值并尝试进入名为 user 的变量。

我的代码如下所示:

<sec:loggedInUserInfo field="username" /> 

<%
  def user = *value of field loggedInUserInfo *
%>

可以这样做吗?

I want to get value of sec:loggedInUserInfo and attempt into a variable named user.

My code looks like this:

<sec:loggedInUserInfo field="username" /> 

<%
  def user = *value of field loggedInUserInfo *
%>

Is it possible for doing that?

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

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

发布评论

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

评论(5

囍孤女 2024-11-16 22:18:32

我不确定我们是否可以直接使用该标签,我之前找不到它,所以我为此目的制作了自定义标签

def userName = { attrs ->
Long id = attrs['id'] ? attrs['id'].toLong() : null
User user = User?.get(id);
out << user?.firstName

}

I am not sure if we can use that tag directly, I couldn't find it earlier, so I have made my custom tag for this purpose

<m:userName id="${session.SPRING_SECURITY_CONTEXT?.authentication?.principal?.id}"/>

def userName = { attrs ->
Long id = attrs['id'] ? attrs['id'].toLong() : null
User user = User?.get(id);
out << user?.firstName

}

想你只要分分秒秒 2024-11-16 22:18:32

我创建了一个标记库作为loggedinUser,它被添加到gsp页面上:

Welcome <g:loggedInUser/> ! 

在我的项目中的每个gsp顶部显示登录的用户名。在自定义标签库中,我的代码如下:

def springSecurityService

def loggedInUser={
    if(springSecurityService.getPrincipal().equals("anonymousUser")){
        response.sendRedirect("${request.contextPath}/login/auth")
    }else{
        out <<"${springSecurityService.currentUser.username}"
        out << """ [${link(controller:"logout"){"Logout"}}]"""
    }
}

所以它在每个页面上显示为:欢迎用户名[注销]!

I have created one taglib as loggedinUser which is added on gsp page as :

Welcome <g:loggedInUser/> ! 

Which is showing logged In username on top of each gsp in my project. In custom tag library my code is as follows :

def springSecurityService

def loggedInUser={
    if(springSecurityService.getPrincipal().equals("anonymousUser")){
        response.sendRedirect("${request.contextPath}/login/auth")
    }else{
        out <<"${springSecurityService.currentUser.username}"
        out << """ [${link(controller:"logout"){"Logout"}}]"""
    }
}

So it's showing on each page as : Welcome USERNAME[Logout] !

雪花飘飘的天空 2024-11-16 22:18:31

这更简单并且对我来说效果很好:

<g:set var="user" value="${sec.username()}" />

This is simpler and works fine for me:

<g:set var="user" value="${sec.username()}" />
别闹i 2024-11-16 22:18:31

分配 到您可以使用的变量:(

<g:set var="fullName" value="${sec.loggedInUserInfo(field:'fullName')}" />

另请参阅 自定义用户详细信息)

To assign any field of the UserDetails instance referred to by <sec:loggedInUserInfo> to a variable you can use:

<g:set var="fullName" value="${sec.loggedInUserInfo(field:'fullName')}" />

(see also Custom User Details)

奶气 2024-11-16 22:18:31

如果您想要 gsp 中的用户对象,只需将其作为模型映射的一部分从控制器传回即可。在控制器动作中做

def user = springSecurityService.getCurrentUser()
render view: 'yourgsp', model: [user: user]

If you want the user object in the gsp, just pass it back as part of the model map from the controller. in a controller action do

def user = springSecurityService.getCurrentUser()
render view: 'yourgsp', model: [user: user]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文