Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a webapplication with Spring MVC and Spring Security.

Is there a way to set UserPrincipal manually?

I need to switch to another user by an admin part of my webapplication. In my controller, is it possible to setUserPrincipal in the request? To connect as if I were someone else.

Like that: request.setUserPrincipal().getName()

share|improve this question
You may want to consider using the SwitchUser filter built into Spring. See the second answer here: stackoverflow.com/questions/2563220/… or the relevant JavaDocs here: static.springsource.org/spring-security/site/docs/3.0.x/apidocs/… – BobG Dec 12 '11 at 15:27

1 Answer

Yes. You can set UserPrincipal manually. Create an interface

public interface UserPrincipal extends org.springframework.security.userdetails.UserDetails
{
   // define role constants here.

}

and implement above interface by providing your own implementation class(UserPrincipalImpl). In UserPrincipalImpl implement UserDetails methods. Check api for UserDetails here.

share|improve this answer
Unfortunately this doesn;t answer the question asked. This answers the question "How do I implement the UserPrincipal interface with a custom class?" – Andrew Harmel-Law Dec 12 '11 at 20:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.