Get current user information in spring security

Source: Internet
Author: User

Recently learning to use Spring security 3, searching for some useful things to write down

Source of reference: http://blog.163.com/tarcy_tw/blog/static/317235320108118119601/

If you just want to display the currently logged user name from the page, you can use the taglib provided by spring security directly.

<%@ taglib prefix= "SEC" uri= "Http://www.springframework.org/security/tags"%>
<div>username: <sec:authentication property= "Name"/></div>

If you want to get the current login user's object in your program.

Userdetails userdetails = (userdetails) securitycontextholder.getcontext ()
. Getauthentication ()
. Getprincipal ();

If you want to get all the permissions that the current login user has.

grantedauthority[] authorities = Userdetails.getauthorities ();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.