1. 09 2月, 2015 2 次提交
    • S
      Clarify the use of @Cacheable in PostConstruct code · 29a6d24d
      Stephane Nicoll 提交于
      Update documentation to explicitly mention that the cache interceptor
      must be fully initialized to provide the expected behavior and therefore
      initialization code should not rely on this feature, i;e. typically in
      PostConstruct callback.
      
      Since the Transactional infrastructure has the exact same infrastructure,
      update that section of the doc as well.
      
      Issue: SPR-12700
      29a6d24d
    • S
      Allow MBeans to be excluded additively · 982f9ce6
      Stephane Nicoll 提交于
      Previously, one could only set the list of bean names to exclude from
      auto-detection and there was no way to add additional bean names.
      
      MBeanExporter now exposes a addExcludedBean method that can be invoked
      during the initialization phase to add bean names to ignore.
      
      Issue: SPR-12686
      982f9ce6
  2. 06 2月, 2015 1 次提交
  3. 04 2月, 2015 1 次提交
    • B
      Sort handler matches in ResourceUrlProvider · 13cdd22f
      Brian Clozel 提交于
      Prior to this change, the `ResourceUrlProvider.getForLookupPath` method
      would try to match handlers using the keySet order in the
      handlerMappings Map. In case of several matches, the handler used for
      the return value could vary, since the registration order in the
      handlerMappings can't be guaranteed in the configuration.
      
      This commit now collects all matching handlers and sort them using a
      `PatternComparator`, in order to try each handler from the most specific
      mapping to the least.
      
      Issue: SPR-12647
      13cdd22f
  4. 03 2月, 2015 5 次提交
  5. 02 2月, 2015 1 次提交
    • S
      Allow subclasses to configure the Yaml instance · d8cec853
      Stephane Nicoll 提交于
      Provide an additional hook-point for YamlProcessor subclasses willing to
      change how the Yaml instance is configured. Also expose the default
      StrictMapAppenderConstructor so that  they can compose a custom instance
      with it.
      
      Issue: SPR-12671
      d8cec853
  6. 30 1月, 2015 1 次提交
    • R
      Add support for Server-Sent Events · a32b5e61
      Rossen Stoyanchev 提交于
      This commit adds ResponseBodyEmitter and SseEmitter (and also
      ResponseEntity<ResponseBodyEmitter> and ResponseEntity<SseEmitter>) as
      new return value types supported on @RequestMapping controller methods.
      
      See Javadoc on respective types for more details.
      
      Issue: SPR-12212
      a32b5e61
  7. 26 1月, 2015 4 次提交
    • S
      Use UTC timezone in Jackson builder and factory tests · ccb1c139
      Sebastien Deleuze 提交于
      Issue: SPR-12634
      ccb1c139
    • S
      Move cached expression evaluation abstraction · c7b324b8
      Stephane Nicoll 提交于
      Move MethodCacheKey and related classes to the expression package so that
      other parts of the framework can benefit ot it.
      
      CacheExpressionEvaluator is a base class that can be used to cache SpEL
      expressions based on its annotation source (i.e. method). Sub-classing
      that base class provides a simple to use API to retrieve Expression
      instances efficiently.
      
      Issue: SPR-12622
      c7b324b8
    • B
      Avoid loss of body content in AbstractRequestLoggingFilter · cf86ecdd
      Brian Clozel 提交于
      Prior to this commit, the `ContentCachingRequestWrapper` class would
      cache the response content only if the reponse would be consumed using
      its InputStream. In case of a Form request, Spring MVC consumes the
      response using the `getParameter*` Servlet API methods. This causes the
      cached content to never be written.
      
      This commit makes the `ContentCachingResponseWrapper` write the request
      body to the cache buffer by using the `getParameter*` API, thus avoiding
      those issues.
      
      Issue: SPR-7913
      cf86ecdd
    • S
      Allow Jackson builder modules configuration to be customized · 5fb6d6d8
      Sebastien Deleuze 提交于
      Modules (well-known or user provided) registration is now performed
      first in order to allow their configuration to be customized by more
      specific ones like custom serializers or deserializers.
      
      Issue: SPR-12634
      5fb6d6d8
  8. 25 1月, 2015 1 次提交
  9. 24 1月, 2015 3 次提交
    • S
      Support @Configuration as meta-annotation in the TCF · 2d918380
      Sam Brannen 提交于
      Spring Framework 4.0 introduced support for using test-related
      annotations as meta-annotations in the Spring TestContext Framework
      (TCF) in order to create custom composed annotations within a test
      suite; however, the detection of default @Configuration classes in test
      classes was not updated to search for @Configuration declared as a
      meta-annotation. Specifically, AnnotationConfigContextLoaderUtils
      invokes Class.isAnnotated() which only searches for annotations
      declared directly on the class in question.
      
      This commit addresses this issue by refactoring the
      isDefaultConfigurationClassCandidate() method in
      AnnotationConfigContextLoaderUtils so that it uses
      AnnotationUtils.findAnnotation() instead of Class.isAnnotated() for
      detecting the presence of the @Configuration annotation, either
      directly or as a meta-annotation.
      
      Issue: SPR-12659
      2d918380
    • S
      Refer to static nested classes, not static inner classes · c5c32ec2
      Sam Brannen 提交于
      Various parts of the reference manual as well as the Javadoc for
      AnnotationConfigContextLoaderUtils improperly refer to "static inner
      classes" even though this terminology does not exist in Java. The Java
      Language Specification explicitly refers to such classes as "static
      nested classes." An "inner class" must be non-static by definition.
      c5c32ec2
    • S
      Update copyright headers in IdGenerators · e97712b9
      Sam Brannen 提交于
      e97712b9
  10. 23 1月, 2015 7 次提交
  11. 22 1月, 2015 2 次提交
  12. 21 1月, 2015 5 次提交
  13. 20 1月, 2015 7 次提交