1. 20 2月, 2014 1 次提交
    • S
      Support nested meta-annotations in AnnotationUtils · 42a36349
      Sam Brannen 提交于
      Prior to this commit, AnnotationUtils.findAnnotation(Class, Class)
      claimed to recursively search through annotations; however, only one
      level of annotations was supported by the algorithm.
      
      This commit alters the search algorithm so that nested meta-annotations
      (i.e., meta-annotations on meta-annotations) are also supported.
      
      Issue: SPR-11448
      42a36349
  2. 19 2月, 2014 8 次提交
  3. 18 2月, 2014 1 次提交
  4. 17 2月, 2014 1 次提交
    • B
      Set virtualHost on StompBrokerRelayRegistration · 1dedb67f
      Brian Clozel 提交于
      Prior to this commit, one couldn't set the virtualHost property on
      StompBrokerRelayMessageHandler via JavaConfig, since
      StompBrokerRelayRegistration's API didn't offer that possibility.
      
      This commit adds a new method in StompBrokerRelayRegistration's fluent
      API to set the virtualHost used by StompBrokerRelayMessageHandler.
      Note: this property is already configurable via xml config.
      
      Issue: SPR-11433
      1dedb67f
  5. 15 2月, 2014 7 次提交
  6. 14 2月, 2014 7 次提交
  7. 13 2月, 2014 14 次提交
  8. 12 2月, 2014 1 次提交
    • S
      Exclude overloaded from equals & hashCode in MethodOverride · 95342456
      Sam Brannen 提交于
      Prior to this commit, the inclusion of the 'overloaded' flag in the
      implementations of equals() and hashCode() in MethodOverride could lead
      to adverse effects in the outcome of equals() in AbstractBeanDefinition.
      
      For example, given two bean definitions A and B that represent the
      exact same bean definition metadata for a bean that relies on method
      injection, if A has been validated and B has not, then A.equals(B) will
      potentially return false, which is not acceptable behavior.
      
      This commit addresses this issue by removing the 'overloaded' flag from
      the implementations of equals() and hashCode() for MethodOverride.
      
      Issue: SPR-11420
      95342456