Class JacksonJsonObjectReader<T>

java.lang.Object
org.springframework.batch.item.json.JacksonJsonObjectReader<T>
Type Parameters:
T - type of the target object
All Implemented Interfaces:
JsonObjectReader<T>

public class JacksonJsonObjectReader<T> extends Object implements JsonObjectReader<T>
Implementation of JsonObjectReader based on Jackson.
Since:
4.1
Author:
Mahmoud Ben Hassine
  • Constructor Details

    • JacksonJsonObjectReader

      public JacksonJsonObjectReader(Class<? extends T> itemType)
      Create a new JacksonJsonObjectReader instance.
      Parameters:
      itemType - the target item type
    • JacksonJsonObjectReader

      public JacksonJsonObjectReader(com.fasterxml.jackson.databind.ObjectMapper mapper, Class<? extends T> itemType)
  • Method Details

    • setMapper

      public void setMapper(com.fasterxml.jackson.databind.ObjectMapper mapper)
      Set the object mapper to use to map Json objects to domain objects.
      Parameters:
      mapper - the object mapper to use
      See Also:
    • open

      public void open(org.springframework.core.io.Resource resource) throws Exception
      Description copied from interface: JsonObjectReader
      Open the Json resource for reading.
      Specified by:
      open in interface JsonObjectReader<T>
      Parameters:
      resource - the input resource
      Throws:
      Exception - if unable to open the resource
    • read

      @Nullable public T read() throws Exception
      Description copied from interface: JsonObjectReader
      Read the next object in the Json resource if any.
      Specified by:
      read in interface JsonObjectReader<T>
      Returns:
      the next object or null if the resource is exhausted
      Throws:
      Exception - if unable to read the next object
    • close

      public void close() throws Exception
      Description copied from interface: JsonObjectReader
      Close the input resource.
      Specified by:
      close in interface JsonObjectReader<T>
      Throws:
      Exception - if unable to close the input resource