* rest with spark java * 4 * Update Application.java * indentation changes * spring @requestmapping shortcuts * removing spring requestmapping and pushing spring-mvc-java * Joining/Splitting Strings with Java and Stream API * adding more join/split functionality * changing package name * testcase change * adding webutils * adding testcase for WebUtils and ServletRequestUtils * adding testcase * spring-security-stormpath * adding ratpack module * adding pom.xml * adding following modules with updated testcase : DB, Filter, Json * adding spring-boot custom banner tutorial * changing banner format in plain text * Delete banner.txt~ * Delete b.txt~ * CORS in JAX-RS * ratpack with google guice
16 lines
314 B
JavaScript
16 lines
314 B
JavaScript
function call(url, type, data) {
|
|
var request = $.ajax({
|
|
url : url,
|
|
method : "GET",
|
|
data : (data) ? JSON.stringify(data) : "",
|
|
dataType : type
|
|
});
|
|
|
|
request.done(function(resp) {
|
|
console.log(resp);
|
|
});
|
|
|
|
request.fail(function(jqXHR, textStatus) {
|
|
console.log("Request failed: " + textStatus);
|
|
});
|
|
}; |