Spring boot + thymeleaf:登录用户

时间:2014-12-02 15:31:09

标签: spring authentication spring-security spring-boot thymeleaf

我想知道,我如何从Thymeleaf获取User对象。目前我正在调用我的userService,它将从DB获取用户。我不喜欢这种方法,因为每次调用都会进行数据库查询。

是否可以从内存中获取用户?

<link href="/css/style2.css"
    th:if="${@commanderService.getCurrentCommander()} and
        ${@commanderService.getCurrentCommander().settings == 'template=1'}" 
    rel="stylesheet" type="text/css" />

CommanderService:

public Commander getCurrentCommander() {
    Object principal = 
        SecurityContextHolder.getContext().getAuthentication().getPrincipal();
    Commander commander = findByName((String)principal);

    return commander;
}

1 个答案:

答案 0 :(得分:3)

如果您使用的是春季安全和百里香,您可以查看: https://github.com/thymeleaf/thymeleaf-extras-springsecurity3
例如:

<div sec:authentication="name">
    The value of the "name" property of the authentication object should appear here.
</div> 

<div sec:authorize="hasRole('ROLE_ADMIN')">
    This content is only shown to administrators.
</div>