Annotation Type JsonComponent


  • @Target(TYPE)
    @Retention(RUNTIME)
    @Documented
    @Component
    public @interface JsonComponent
    Component that provides JsonSerializer and/or JsonDeserializer implementations to be registered with Jackson when JsonComponentModule is in use. Can be used to annotate JsonSerializer or JsonDeserializer implementations directly or a class that contains them as inner-classes. For example:
     @JsonComponent
     public class CustomerJsonComponent {
    
         public static class Serializer extends JsonSerializer<Customer> {
    
             // ...
    
         }
    
         public static class Deserializer extends JsonDeserializer<Customer> {
    
             // ...
    
         }
    
     }
    
     
    Since:
    1.4.0
    See Also:
    JsonComponentModule
    • Optional Element Summary

      Optional Elements 
      Modifier and TypeOptional ElementDescription
      Stringvalue
      The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.
    • Element Detail

      • value

        @AliasFor(annotation=org.springframework.stereotype.Component.class)
        String value
        The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.
        Returns:
        the component name
        Default:
        ""