Just a note: / - slash, backslash \ .
Except for external reasons due to other errors, neither redirect:process not redirect:/process should change anything when it comes to the session.
But these 2 redirects should not do the same if you are not on the root application page. Assuming your application runs on HTTP port 80 on server.domain server, with the myapp servlet context, and processes the http://server.domain/myapp/local/part , redirect:process requests the http://server.domain/myapp/local/part/process request from the browser http://server.domain/myapp/local/part/process when redirect:/process will ask the browser to request http://server.domain/myapp/process .
What happens next depends on your comparisons with the controller.
source share