how can i call multiple Servlets from JSP file ? it is set to go for welcome file when it starts in and it navigates it to login and registration page if anyone logins it is navigated to the user.jsp file and in user.jsp page i need to load the information which is in the Servlet doGet method ? and in the servlet i have also used to request dispatch
RequestDispatcher dispatcher = request.getRequestDispatcher("abc.jsp");
but it is not working until i am not starting servlet and navigating to user.jsp my own self.