Index

A B C D E F G H I J K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form

J

Jackson2JavaTypeMapper - Interface in org.springframework.kafka.support.mapping
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJavaTypeMapper for Jackson 3.
Jackson2JavaTypeMapper.TypePrecedence - Enum Class in org.springframework.kafka.support.mapping
Deprecated.
The precedence for type conversion - inferred from the method parameter or message headers.
JacksonJavaTypeMapper - Interface in org.springframework.kafka.support.mapping
Strategy for setting metadata on messages such that one can create the class that needs to be instantiated when receiving a message.
JacksonJavaTypeMapper.TypePrecedence - Enum Class in org.springframework.kafka.support.mapping
The precedence for type conversion - inferred from the method parameter or message headers.
JacksonJsonDeserializer<T> - Class in org.springframework.kafka.support.serializer
Generic Deserializer for receiving JSON from Kafka and return Java objects.
JacksonJsonDeserializer() - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with a default JsonMapper.
JacksonJsonDeserializer(Class<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and a default JsonMapper.
JacksonJsonDeserializer(Class<? super T>, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and useHeadersIfPresent with a default JsonMapper.
JacksonJsonDeserializer(Class<? super T>, JsonMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, JsonMapper and useHeadersIfPresent.
JacksonJsonDeserializer(Class<? super T>, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and JsonMapper.
JacksonJsonDeserializer(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and a default JsonMapper.
JacksonJsonDeserializer(TypeReference<? super T>, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and useHeadersIfPresent with a default JsonMapper.
JacksonJsonDeserializer(TypeReference<? super T>, JsonMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, JsonMapper and useHeadersIfPresent.
JacksonJsonDeserializer(TypeReference<? super T>, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and JsonMapper.
JacksonJsonDeserializer(JavaType) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and a default JsonMapper.
JacksonJsonDeserializer(JavaType, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and useHeadersIfPresent with a default JsonMapper.
JacksonJsonDeserializer(JavaType, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, and JsonMapper.
JacksonJsonDeserializer(JavaType, JsonMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided target type, JsonMapper and useHeadersIfPresent.
JacksonJsonDeserializer(JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
Construct an instance with the provided JsonMapper.
JacksonJsonMessageConverter - Class in org.springframework.kafka.support.converter
Base class for JSON message converters that use Jackson 3; on the consumer side, it can handle byte[], Bytes and String record values.
JacksonJsonMessageConverter() - Constructor for class org.springframework.kafka.support.converter.JacksonJsonMessageConverter
 
JacksonJsonMessageConverter(JsonMapper) - Constructor for class org.springframework.kafka.support.converter.JacksonJsonMessageConverter
 
JacksonJsonSerde<T> - Class in org.springframework.kafka.support.serializer
A Serde that provides serialization and deserialization in JSON format.
JacksonJsonSerde() - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(Class<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(Class<? super T>, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(JacksonJsonSerializer<T>, JacksonJsonDeserializer<T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(TypeReference<? super T>, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(JavaType) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(JavaType, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerde(JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerde
 
JacksonJsonSerializer<T> - Class in org.springframework.kafka.support.serializer
Generic Serializer for sending Java objects to Kafka as JSON.
JacksonJsonSerializer() - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JacksonJsonSerializer(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JacksonJsonSerializer(TypeReference<? super T>, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JacksonJsonSerializer(JavaType, JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JacksonJsonSerializer(JsonMapper) - Constructor for class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JacksonJsonTypeResolver - Interface in org.springframework.kafka.support.serializer
Determine the JavaType from the topic/data/headers.
JacksonMapperUtils - Class in org.springframework.kafka.support
The utilities for Jackson ObjectMapper instances.
JacksonMimeTypeModule - Class in org.springframework.kafka.support
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of MimeTypeJacksonModule.
JacksonMimeTypeModule() - Constructor for class org.springframework.kafka.support.JacksonMimeTypeModule
Deprecated.
 
JacksonPresent - Class in org.springframework.kafka.support
The utility to check if Jackson JSON processor is present in the classpath.
JacksonProjectingMessageConverter - Class in org.springframework.kafka.support.converter
A MessageConverter implementation based on Jackson3 uses a Spring Data ProjectionFactory to bind incoming messages to projection interfaces.
JacksonProjectingMessageConverter() - Constructor for class org.springframework.kafka.support.converter.JacksonProjectingMessageConverter
JacksonProjectingMessageConverter(MessagingMessageConverter) - Constructor for class org.springframework.kafka.support.converter.JacksonProjectingMessageConverter
Create a new JacksonProjectingMessageConverter using the given JsonMapper.
JacksonProjectingMessageConverter(JsonMapper) - Constructor for class org.springframework.kafka.support.converter.JacksonProjectingMessageConverter
Create a new JacksonProjectingMessageConverter using the given JsonMapper.
JacksonProjectingMessageConverter(JsonMapper, MessagingMessageConverter) - Constructor for class org.springframework.kafka.support.converter.JacksonProjectingMessageConverter
Create a new JacksonProjectingMessageConverter using the given JsonMapper.
JacksonUtils - Class in org.springframework.kafka.support
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonMapperUtils API.
JavaUtils - Class in org.springframework.kafka.support
Chained utility methods to simplify some Java repetitive code.
jitter() - Element in annotation interface org.springframework.kafka.annotation.BackOff
Specify a jitter value for the base retry attempt, randomly subtracted or added to the calculated delay, resulting in a value between delay - jitter and delay + jitter but never below the base delay or above the max delay.
jitterString() - Element in annotation interface org.springframework.kafka.annotation.BackOff
Specify a jitter value for the base retry attempt using a String format.
JSON_TYPES - Static variable in class org.springframework.kafka.support.DefaultKafkaHeaderMapper
Deprecated.
Header name for java types of other headers.
JSON_TYPES - Static variable in class org.springframework.kafka.support.JsonKafkaHeaderMapper
Header name for java types of other headers.
JsonDeserializer<T> - Class in org.springframework.kafka.support.serializer
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJsonDeserializer for Jackson 3.
JsonDeserializer() - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with a default ObjectMapper.
JsonDeserializer(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and a default ObjectMapper.
JsonDeserializer(TypeReference<? super T>, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and useHeadersIfPresent with a default ObjectMapper.
JsonDeserializer(TypeReference<? super T>, ObjectMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, ObjectMapper and useHeadersIfPresent.
JsonDeserializer(TypeReference<? super T>, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and ObjectMapper.
JsonDeserializer(JavaType) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and a default ObjectMapper.
JsonDeserializer(JavaType, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and useHeadersIfPresent with a default ObjectMapper.
JsonDeserializer(JavaType, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and ObjectMapper.
JsonDeserializer(JavaType, ObjectMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, ObjectMapper and useHeadersIfPresent.
JsonDeserializer(ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided ObjectMapper.
JsonDeserializer(Class<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and a default ObjectMapper.
JsonDeserializer(Class<? super T>, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and useHeadersIfPresent with a default ObjectMapper.
JsonDeserializer(Class<? super T>, ObjectMapper, boolean) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, ObjectMapper and useHeadersIfPresent.
JsonDeserializer(Class<? super T>, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonDeserializer
Deprecated.
Construct an instance with the provided target type, and ObjectMapper.
JsonKafkaHeaderMapper - Class in org.springframework.kafka.support
Default header mapper for Apache Kafka.
JsonKafkaHeaderMapper() - Constructor for class org.springframework.kafka.support.JsonKafkaHeaderMapper
Construct an instance with the default object mapper and default header patterns for outbound headers; all inbound headers are mapped.
JsonKafkaHeaderMapper(String...) - Constructor for class org.springframework.kafka.support.JsonKafkaHeaderMapper
Construct an instance with a default object mapper and the provided header patterns for outbound headers; all inbound headers are mapped.
JsonKafkaHeaderMapper(JsonMapper) - Constructor for class org.springframework.kafka.support.JsonKafkaHeaderMapper
Construct an instance with the provided object mapper and default header patterns for outbound headers; all inbound headers are mapped.
JsonKafkaHeaderMapper(JsonMapper, String...) - Constructor for class org.springframework.kafka.support.JsonKafkaHeaderMapper
Construct an instance with the provided object mapper and the provided header patterns for outbound headers; all inbound headers are mapped.
JsonKafkaHeaderMapper.NonTrustedHeaderType - Class in org.springframework.kafka.support
Represents a header that could not be decoded due to an untrusted type.
jsonMapper - Variable in class org.springframework.kafka.support.serializer.JacksonJsonDeserializer
 
jsonMapper - Variable in class org.springframework.kafka.support.serializer.JacksonJsonSerializer
 
JsonMessageConverter - Class in org.springframework.kafka.support.converter
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJsonMessageConverter for Jackson 3.
JsonMessageConverter() - Constructor for class org.springframework.kafka.support.converter.JsonMessageConverter
Deprecated.
 
JsonMessageConverter(ObjectMapper) - Constructor for class org.springframework.kafka.support.converter.JsonMessageConverter
Deprecated.
 
JsonSerde<T> - Class in org.springframework.kafka.support.serializer
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJsonSerde for Jackson 3.
JsonSerde() - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(TypeReference<? super T>, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(JavaType) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(JavaType, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(Class<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(Class<? super T>, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerde(JsonSerializer<T>, JsonDeserializer<T>) - Constructor for class org.springframework.kafka.support.serializer.JsonSerde
Deprecated.
 
JsonSerializer<T> - Class in org.springframework.kafka.support.serializer
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJsonSerializer for Jackson 3.
JsonSerializer() - Constructor for class org.springframework.kafka.support.serializer.JsonSerializer
Deprecated.
 
JsonSerializer(TypeReference<? super T>) - Constructor for class org.springframework.kafka.support.serializer.JsonSerializer
Deprecated.
 
JsonSerializer(TypeReference<? super T>, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerializer
Deprecated.
 
JsonSerializer(JavaType, ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerializer
Deprecated.
 
JsonSerializer(ObjectMapper) - Constructor for class org.springframework.kafka.support.serializer.JsonSerializer
Deprecated.
 
JsonTypeResolver - Interface in org.springframework.kafka.support.serializer
Deprecated, for removal: This API element is subject to removal in a future version.
since 4.0 in favor of JacksonJsonTypeResolver for Jackson 3.
JUnitUtils - Class in org.springframework.kafka.test.utils
Utility methods for JUnit rules and conditions.
JUnitUtils.LevelsContainer - Class in org.springframework.kafka.test.utils
 
A B C D E F G H I J K L M N O P R S T U V W 
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form