Is there any way to select current value in dropdown list by Spring MVC by
?
prior to binding the form to the model, you should set whatever variable you want to be selected to the desired value in the controller of your jsp.
Form form = new Form();
form.setFoo("bar");
model.addAttribute("form", form);
When the form is built in the jsp, that form variable will be the default selected value in your options list.