1. 18 10月, 2013 11 次提交
  2. 17 10月, 2013 2 次提交
    • P
      Refine ResolvableType class · 3337fd32
      Phillip Webb 提交于
      - Support for serialization
      - Allow programmatic creation of an array from a given component type
      - Allow programmatic creation with given generics
      - Extract generics from Class types using Class.getTypeParameters()
      - Move TypeVariableResolver to an inner class (and make method private)
      - Refine 'resolve()' algorithm
      
      Issue: SPR-10973
      3337fd32
    • S
      Document 'annotated classes' in Testing chapter · 7ffd05a8
      Sam Brannen 提交于
      In order to help developers avoid surprises from unintended use of
      "@Bean Lite Mode" when referencing classes via @ContextConfiguration in
      the TestContext framework, this commit duplicates the previous
      discussion of "annotated classes" from the Javadoc for
      @ContextConfiguration as a tip in the "Context configuration with
      annotated classes" section of the Testing chapter in the reference
      manual.
      
      Issue: SPR-10971
      7ffd05a8
  3. 16 10月, 2013 4 次提交
  4. 15 10月, 2013 14 次提交
  5. 14 10月, 2013 2 次提交
  6. 13 10月, 2013 1 次提交
    • R
      Add support for resolving message headers · 8ae88c20
      Rossen Stoyanchev 提交于
      This change adds support for @Header and @Headers annotated method
      arguments to spring-messaging. Also supported are arguments of type
      MessageHeaders, and MessageHeaderAccessor (including sub-types of
      MessageHeaderAccessort as long as they provide a wrap(Message<?>)
      static factory method).
      
      This change also renames @MessageBody to @Payload.
      
      Issue: SPR-10985
      8ae88c20
  7. 12 10月, 2013 5 次提交
  8. 11 10月, 2013 1 次提交
    • R
      Add support for MIME-based message conversion · 7d3b6497
      Rossen Stoyanchev 提交于
      The MessageConverter interface in spring-messaging is now explicitly
      designed to support conversion of the payload of a Message<?> to and
      from serialized form based on MIME type message header.
      By default, the MessageHeaders.CONTENT_HEADER header is used but a
      custom ContentTypeResolver can be configured to customize that.
      
      Currently available are Jackson 2, String, and byte array converters.
      A CompositeMessageConverter can be used to configure several
      message converters in various places such as a messaging template.
      7d3b6497