From the course: Spring: Spring MVC

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Test session flow and implement forwarding

Test session flow and implement forwarding

From the course: Spring: Spring MVC

Start my 1-month free trial

Test session flow and implement forwarding

- [Instructor] Now that we have set up both the controllers to log in and the user profile for the session attributes, let's grab the profile jsp. That's something that we have to add in our jsp folder. So I'm going to go back to your chapter seven resources, and that is already provided to you and that chapter folder. Let's copy that. And paste it on the jsp folder. Right, so we have the view ready with us. The profile controller is also ready with us. And the last step of this is to forward the control to UserProfileController from the LoginController. So the flow that we have is like this: the user will submit the login form, we will enter the LoginController. The LoginController is going to store the session attributes, and from here, we are going to move the control to the UserProfileController. Now that can be done with a concept of forwarding, which is basically borrowed from the servlets jsp api. If you…

Contents