I followed lot of tutorials for find this. I had many answer with jsp. But i need do this with html
public class HomeController {
@RequestMapping("/home")
public String home(Model model){
int values[]={33,34,35,36};
return "index";
}
I need to pass this array values to the html drop down menu in the my index.html file. Please help me Thank you.