I am using Spring MVC and Spring Security version 3.0.6.RELEASE. What is the easiest way to get the user name in my JSP? Or even just whether or not the user is logged in? I can think of a couple ways:
Using a scriptlet like this to determine if the user is logged in:
<%=org.springframework.security.core.context.SecurityContextHolder.getContext()
.getAuthentication().getPrincipal().equals("anonymousUser")
? "false":"true"%>
I'm not a fan of using scriptlets, though, and I want to use this in some <c:if>
tags, which requires putting it back as a page attribute.
I could again use SecurityContextHolder from my @Controller
and put it on the model. I need this on every page, though, so I'd rather not have to add this logic in every one of my Controllers.
I suspect there's a cleaner way to do this...
Check Spring security tags : <sec:authentication property="principal.username" />
http://static.springsource.org/spring-security/site/docs/3.0.x/reference/taglibs.html
And you can check if logged :
<sec:authorize access="isAuthenticated()">
instead of c:if