I am using Spring security where I have permitted all for an URL for user registration, like so
<security:intercept-url pattern="/signup" access="permitAll" />
I want the user to be logged in automatically as soon as he registers. I do email verification on registration but don't want the user to wait till that happens. I have done some extensive search but what seems to be a simple errand in other frameworks, seems to be tough using Spring Security.