Is it possible in Spring MVC to use return url when configuring form based authentication? For example, user is not authorized and trying to access page /manage, he rederects to login page /account/login?returnurl=%2Fmanage. Then, after he is successfully authorized, he redirects to /manage. As I understand there is no possibility to configure such behaviour in WebSecurityConfigurerAdapter.configure(HttpSecurity http). Any thoughts on how to implement it?Is it possible in Spring MVC to use return url