I am currently creating a web-application where the users can fetch tags from the database as JSON,
here is my struts action
public String execute(){
Gson gson = new Gson();
String tagsAsJson = gson.toJson(audioTaggingService.findTagsByName(q));
System.out.println(tagsAsJson);
return "success";
}
UPDATE:
The tagsAsJson
is already in a JSON format all I want is to return only that, and not the whole class action itself.
It returns something like this
This is the data I want to return to the user
[{"id":2,"name":"Dubstep","description":"Dub wob wob"},{"id":3,"name":"BoysIIMen","description":"A 1990s Boy Band"},{"id":4,"name":"Sylenth1","description":"A VST Plugin for FLStudio "}]
How do I return the tagsAsJson
as a r JSON esponse? since that JSON response will be used by the client side code.