EN
jQuery - Ajax GET request with Java Spring MVC controller
1
points
In this article, we're going to have a look at how to make make AJAX GET request with jQuery.
Note: scroll to See also section to see other variants of AJAX requests.
1. jQuery AJAX GET request
In this section $.ajax
method is used to make GET request.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
<script>
$(document).ready(function() {
$.ajax({
type: 'GET',
url: '/examples/echo',
data: {
text: 'hello'
},
success: function(text) {
$(document.body).text('Response: ' + text);
},
error: function(jqXHR) {
$(document.body).text('Error: ' + jqXHR.status);
}
});
});
</script>
</body>
</html>
2. Spring MVC server site GET methods example
In this section simple Spring backend that handle GET method requests is presented.
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
@Controller
public class EchoGetController {
@RequestMapping(value = "/examples/echo", method = RequestMethod.GET)
@ResponseBody
public String makeGetEcho(@RequestParam("text") String text) {
return text;
}
}