In spring security after successfully login how to print user First name and Last name in jsp page like :
sec:authentication property="principal.firstname" and sec:authentication property="principal.lastname"
In spring security after successfully login how to print user First name and Last name in jsp page like :
sec:authentication property="principal.firstname" and sec:authentication property="principal.lastname"
You should implement your own UserDetails
with properties which you need.