I have a method in controller class as
@RequestMapping(method=RequestMethod.GET, value="fetchdata",produces="application/json")
public @ResponseBody Map> fetchdata() {}
I want to create a simple jsp with button that on click calls this function
The code is :
<form action="https://localhost:8080/mainurl/fetchdata" method ="get">
It's not working.Can someone help what is wrong with the code?