24-Spring MVC - Project Work | Dashboard Pages for Admin & User (Contact App)- By eZeon
This Project Work(Contact App) video is based on Prepare Dashboard Pages for - Admin and User Role. Second task from below checklist. TASK LIST FOR LOGIN OPERATION: 1. UserService - check business logic implementation code for user authentication *2. Prepare Dashboard Pages for - Admin and User Roles (link to UserController) 3. Login Form + LoginCommand + Spring MVC Form Taglib 4. Show error messages correctly + JSTL Core Tablib 5. Bind Logged in user with HttpSession scope for further use 6. Role wise menu display CODE REFERENCE: //UserController.java /** * * @author Vikram */ @Controller public class UserController { @RequestMapping(value = "/user/dashboard") public String userDashboard() { return "dashboard_user"; //JSP } @RequestMapping(value = "/admin/dashboard") public String adminDashboard() { return "dashboard_admin"; //JSP } //TODO: other controller methods } Don't skip or miss any video, just follow step by step video series. Also check the source code listing in our blog http://ezeon.in/blog SUBSCRUBE my channel for more videos on Java Technologies and Software Development including all advanced development frameworks and technologies.
This Project Work(Contact App) video is based on Prepare Dashboard Pages for - Admin and User Role. Second task from below checklist. TASK LIST FOR LOGIN OPERATION: 1. UserService - check business logic implementation code for user authentication *2. Prepare Dashboard Pages for - Admin and User Roles (link to UserController) 3. Login Form + LoginCommand + Spring MVC Form Taglib 4. Show error messages correctly + JSTL Core Tablib 5. Bind Logged in user with HttpSession scope for further use 6. Role wise menu display CODE REFERENCE: //UserController.java /** * * @author Vikram */ @Controller public class UserController { @RequestMapping(value = "/user/dashboard") public String userDashboard() { return "dashboard_user"; //JSP } @RequestMapping(value = "/admin/dashboard") public String adminDashboard() { return "dashboard_admin"; //JSP } //TODO: other controller methods } Don't skip or miss any video, just follow step by step video series. Also check the source code listing in our blog http://ezeon.in/blog SUBSCRUBE my channel for more videos on Java Technologies and Software Development including all advanced development frameworks and technologies.