getting backend data without re-rendering jsp
In a typical MVC application, when a submit button is clicked on a form, the control goes to the backend and retrieves the data after which the jsp dynamically re-renders the html page. This increases the response time, especially if the application offers display preferences to different users.
Therefore, is there any method or GUI technology that allows the data retrieval from the backend, without having to re render the html from the jsp everytime a form is submitted?
In other words, the gui kindda remains static with the preferences, but the data is updated.
|