=========================== AJAX Introduction =========================== 1) Synchronus request (entire web page will be reloaded) 2) Asynchronus request (page will not be reloaded, only data will be re-loaded) in our app, for states and cities drop downs we need to implement asynchronus requests. => To implement asynchronus request we will use AJAX. -> To start AJAX engine we can use Jquery library ##### Step-1 : Add below dependency in pom.xml ##### org.webjars jquery 3.6.4 ##### Step-2 : inlcude js file in html page section ##### #### step-3 : implement ajax calls to load drop down options dynamically #####