I\'m trying to retrieve the user information from DB and display in the front end (JSP) using Spring MVC.
Inside the controller, currently I\'m adding the following cod
In controller add as below
ModelMap model = new ModelMap(); model.put("user", user);
In jsp use like this
${user.name}