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.
In this section $.ajax
method is used to make GET request.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<script>
8
9
$(document).ready(function() {
10
$.ajax({
11
type: 'GET',
12
url: '/examples/echo',
13
data: {
14
text: 'hello'
15
},
16
success: function(text) {
17
$(document.body).text('Response: ' + text);
18
},
19
error: function(jqXHR) {
20
$(document.body).text('Error: ' + jqXHR.status);
21
}
22
});
23
});
24
25
</script>
26
</body>
27
</html>
In this section simple Spring backend that handle GET method requests is presented.
xxxxxxxxxx
1
import org.springframework.stereotype.Controller;
2
import org.springframework.web.bind.annotation.*;
3
4
5
public class EchoGetController {
6
7
value = "/examples/echo", method = RequestMethod.GET) (
8
9
public String makeGetEcho( ("text") String text) {
10
return text;
11
}
12
}