Returning JSON object as response in Spring Boot

JavaJsonSpring BootResponse

Java Problem Overview


I have a sample RestController in Spring Boot:

@RestController
@RequestMapping("/api")
class MyRestController
{
    @GetMapping(path = "/hello")
    public JSONObject sayHello()
    {
        return new JSONObject("{'aa':'bb'}");
    }
}

I am using the JSON library org.json

When I hit API /hello, I get an exception saying :

> Servlet.service() for servlet [dispatcherServlet] in context with path > [] threw exception [Request processing failed; nested exception is > java.lang.IllegalArgumentException: No converter found for return > value of type: class org.json.JSONObject] with root cause > > java.lang.IllegalArgumentException: No converter found for return > value of type: class org.json.JSONObject

What is the issue? Can someone explain what exactly is happening?

Java Solutions


Solution 1 - Java

As you are using Spring Boot web, Jackson dependency is implicit and we do not have to define explicitly. You can check for Jackson dependency in your pom.xml in the dependency hierarchy tab if using eclipse.

And as you have annotated with @RestController there is no need to do explicit json conversion. Just return a POJO and jackson serializer will take care of converting to json. It is equivalent to using @ResponseBody when used with @Controller. Rather than placing @ResponseBody on every controller method we place @RestController instead of vanilla @Controller and @ResponseBody by default is applied on all resources in that controller.
Refer this link: https://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html#mvc-ann-responsebody

The problem you are facing is because the returned object(JSONObject) does not have getter for certain properties. And your intention is not to serialize this JSONObject but instead to serialize a POJO. So just return the POJO.
Refer this link: https://stackoverflow.com/a/35822500/5039001

If you want to return a json serialized string then just return the string. Spring will use StringHttpMessageConverter instead of JSON converter in this case.

Solution 2 - Java

The reason why your current approach doesn't work is because Jackson is used by default to serialize and to deserialize objects. However, it doesn't know how to serialize the JSONObject. If you want to create a dynamic JSON structure, you can use a Map, for example:

@GetMapping
public Map<String, String> sayHello() {
    HashMap<String, String> map = new HashMap<>();
    map.put("key", "value");
    map.put("foo", "bar");
    map.put("aa", "bb");
    return map;
}

This will lead to the following JSON response:

{ "key": "value", "foo": "bar", "aa": "bb" }

This is a bit limited, since it may become a bit more difficult to add child objects. Jackson has its own mechanism though, using ObjectNode and ArrayNode. To use it, you have to autowire ObjectMapper in your service/controller. Then you can use:

@GetMapping
public ObjectNode sayHello() {
    ObjectNode objectNode = mapper.createObjectNode();
    objectNode.put("key", "value");
    objectNode.put("foo", "bar");
    objectNode.put("number", 42);
    return objectNode;
}

This approach allows you to add child objects, arrays, and use all various types.

Solution 3 - Java

You can either return a response as String as suggested by @vagaasen or you can use ResponseEntity Object provided by Spring as below. By this way you can also return Http status code which is more helpful in webservice call.

@RestController
@RequestMapping("/api")
public class MyRestController
{

    @GetMapping(path = "/hello", produces=MediaType.APPLICATION_JSON_VALUE)
    public ResponseEntity<Object> sayHello()
    {
         //Get data from service layer into entityList.

	    List<JSONObject> entities = new ArrayList<JSONObject>();
	    for (Entity n : entityList) {
		    JSONObject entity = new JSONObject();
		    entity.put("aa", "bb");
		    entities.add(entity);
	    }
        return new ResponseEntity<Object>(entities, HttpStatus.OK);
    }
}

Solution 4 - Java

you can also use a hashmap for this

@GetMapping
public Map<String, Object> get() {
    Map<String, Object> map = new HashMap<>();
    map.put("key1", "value1");
    map.put("results", somePOJO);
    return map;
}

Solution 5 - Java

More correct create DTO for API queries, for example entityDTO:

  1. Default response OK with list of entities:

> @GetMapping(produces=MediaType.APPLICATION_JSON_VALUE) > @ResponseStatus(HttpStatus.OK) > public List getAll() { > return entityService.getAllEntities(); > }

But if you need return different Map parameters you can use next two examples
2. For return one parameter like map:

> @GetMapping(produces=MediaType.APPLICATION_JSON_VALUE) > public ResponseEntity getOneParameterMap() { > return ResponseEntity.status(HttpStatus.CREATED).body( > Collections.singletonMap("key", "value")); > } >

  1. And if you need return map of some parameters(since Java 9):

> @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) > public ResponseEntity getSomeParameters() { > return ResponseEntity.status(HttpStatus.OK).body(Map.of( > "key-1", "value-1", > "key-2", "value-2", > "key-3", "value-3")); > }

Solution 6 - Java

@RequestMapping("/api/status")
public Map doSomething()
{
    return Collections.singletonMap("status", myService.doSomething());
}

PS. Works only for 1 value

Solution 7 - Java

use ResponseEntity<ResponseBean>

Here you can use ResponseBean or Any java bean as you like to return your api response and it is the best practice. I have used Enum for response. it will return status code and status message of API.

@GetMapping(path = "/login")
public ResponseEntity<ServiceStatus> restApiExample(HttpServletRequest request,
            HttpServletResponse response) {
        String username = request.getParameter("username");
        String password = request.getParameter("password");
        
        loginService.login(username, password, request);
        return new ResponseEntity<ServiceStatus>(ServiceStatus.LOGIN_SUCCESS,
                HttpStatus.ACCEPTED);
    }
	

for response ServiceStatus or(ResponseBody)

	public enum ServiceStatus {
	
	LOGIN_SUCCESS(0, "Login success"),
	
	private final int id;
    private final String message;
    
    //Enum constructor
    ServiceStatus(int id, String message) {
        this.id = id;
        this.message = message;
    }
    
    public int getId() {
        return id;
    }
    
    public String getMessage() {
        return message;
    }
}

Spring REST API should have below key in response

  1. Status Code
  2. Message

you will get final response below

{

   "StatusCode" : "0",

   "Message":"Login success"

}

you can use ResponseBody(java POJO, ENUM,etc..) as per your requirement.

Solution 8 - Java

If you need to return a JSON object using a String, then the following should work:

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.http.ResponseEntity;
...

@RestController
@RequestMapping("/student")
public class StudentController {

    @GetMapping
    @RequestMapping("/")
    public ResponseEntity<JsonNode> get() throws JsonProcessingException {
        ObjectMapper mapper = new ObjectMapper();
        JsonNode json = mapper.readTree("{\"id\": \"132\", \"name\": \"Alice\"}");
        return ResponseEntity.ok(json);
    }
    ...
}

Solution 9 - Java

I use to return Map in the Controller by using the toMap() method of org.json.JSONObject as follows.

@GetMapping("/json")
public Map<String, Object> getJsonOutput() {       
    JSONObject jsonObject = new JSONObject();
    //construct jsonObject here
    return jsonObject.toMap();
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioniwekesiView Question on Stackoverflow
Solution 1 - Javaprem kumarView Answer on Stackoverflow
Solution 2 - Javag00glen00bView Answer on Stackoverflow
Solution 3 - JavaSangam BeloseView Answer on Stackoverflow
Solution 4 - Javamchouhan_googleView Answer on Stackoverflow
Solution 5 - JavaAlexander YushkoView Answer on Stackoverflow
Solution 6 - JavaDmitryView Answer on Stackoverflow
Solution 7 - JavaOnic TeamView Answer on Stackoverflow
Solution 8 - JavaAshwinView Answer on Stackoverflow
Solution 9 - JavaShehan SimenView Answer on Stackoverflow