1. 03 11月, 2014 6 次提交
    • S
      Log context cache statistics in the TCF · da04362a
      Sam Brannen 提交于
      Prior to this commit, finding out how many application contexts had
      been loaded within a test suite required the use of reflection and a
      bit of hacking.
      
      This commit addresses this issue by logging ContextCache statistics
      whenever an application context is loaded by the Spring TestContext
      Framework (TCF).
      
      The log output can be enabled by setting the
      "org.springframework.test.context.cache" logging category to DEBUG.
      
      Issue: SPR-12409
      da04362a
    • S
      Use unversioned XSD links in code examples · 8b5fda5a
      Sebastien Deleuze 提交于
      8b5fda5a
    • S
      Add documentation for the keep-alive flag · 6534d003
      Stephane Nicoll 提交于
      This commit updates the documentation of the task:executor element to
      reference the keep-alive flag.
      
      Issue: SPR-12407
      6534d003
    • B
      Fix SubProtocolHandler duplicate registration · 1fff631d
      Brian Clozel 提交于
      Prior to this change, duplicate SubProtocolHandlers could be registered
      when configuring STOMP with several registrations:
      
          public void registerStompEndpoints
                (final StompEndpointRegistry registry) {
            this.endpointRegistry.addEndpoint("/stompOverWebSocket");
            this.endpointRegistry.addEndpoint("/stompOverSockJS").withSockJS();
          }
      
      This commit registers sub-protocols in a Set instead of a list (see
      SubProtocolWebSocketHandler), thus fixing the issue.
      
      Issue: SPR-12403
      1fff631d
    • S
      Fix typo · 330897b4
      Stephane Nicoll 提交于
      330897b4
    • J
      Explicitly clear manually registered singleton names after destroySingletons call · 14fef198
      Juergen Hoeller 提交于
      As indicated by our recent Spring Integration test failure, autowiring attempts after context closing did not fail before. After the introduction of the separately managed manualSingletonNames set, the algorithm could run into a situation where a singleton name is still in the manualSingletonNames set but not in the singletonObjects map anymore. As a remedy, destroySingletons needs to explicitly clear the manualSingletonNames set in order to remove references to non-disposable singleton beans as well (which are otherwise left in the set since individual destroySingleton calls only come in for disposable beans with destroy methods).
      
      Issue: SPR-12404
      14fef198
  2. 02 11月, 2014 4 次提交
  3. 01 11月, 2014 11 次提交
  4. 31 10月, 2014 9 次提交
  5. 30 10月, 2014 9 次提交
  6. 29 10月, 2014 1 次提交