Let's say I have a HTML page and I am running back-end on java and I want to make simple ajax request call.
e.g
fetch('localhost:8080/testResponse)
.then(function(response) {
return response.json();
})
and on my java server I have
@Path('testResponse')
public class NewClass {
private String name = "MyName";
private String age = "MyAge";
@GET
public String getName(){
return this.name;
}
@GET
public String getAge(){
return this.age;
}
}
So basically there is get request to /testResponse , and Path annotation indicates what class should catch it but how do I choose what method will get invoked and returns data? Whats the logic behind it? I cannot find anything about it.
/////////////////////////////////
So. I have created new web project in netbeans. It generated html file , i added just basic ajax call to server.
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>TODO write content</div>
<script>
fetch('/ajax_test/testResponse/name').then(function(x){
alert(JSON.stringify(x));
})
</script>
</body>
</html>
When i run it it shows on localhost:8080/ajax_test
I created a file by comments here e.g
@Path("/ajax_test")
public class testik {
private String name = "MyName";
private String age = "MyAge";
@GET
@Path("/name")
public String getName(){
return this.name;
}
@GET
@Path("/age")
public String getAge(){
return this.age;
}
}
Yet its still 404
did i miss something? Thank you again for help
SImply use the @Path to further delineate the endpoint. So if you want 'URL Prefix/testResponse/name' and 'URL Prefix/testResponse/age' then do the following: