1. 01 7月, 2016 2 次提交
  2. 30 6月, 2016 5 次提交
  3. 29 6月, 2016 8 次提交
  4. 28 6月, 2016 8 次提交
  5. 27 6月, 2016 3 次提交
  6. 26 6月, 2016 2 次提交
  7. 24 6月, 2016 3 次提交
  8. 23 6月, 2016 5 次提交
    • J
      f5282bc1
    • B
      Improve exception logging in HandlerExceptionResolvers · 0345d734
      Brian Clozel 提交于
      This commit updates AbstractHandlerExceptionResolver to only log at the
      WARN level exceptions that are actually resolved by the
      ExceptionResolver.
      
      In case developers wish to log each time an ExceptionResolver is called,
      a DEBUG level log is still available.
      
      Issue: SPR-14392
      0345d734
    • S
      Implement equals() & hashCode() in MockServerContainerContextCustomizer · 3dbf25e0
      Sam Brannen 提交于
      Issue: SPR-14367
      3dbf25e0
    • S
      Support WebSocket ServletServerContainerFB in the TCF · f7dd7575
      Sam Brannen 提交于
      Prior to this commit, any attempt to include a bean of type
      ServletServerContainerFactoryBean in the WebApplicationContext for an
      integration test class annotated with @WebAppConfiguration in
      conjunction the Spring TestContext Framework (TCF) would have resulted
      in an IllegalStateException stating that "A ServletContext is required
      to access the javax.websocket.server.ServerContainer instance."
      
      In such scenarios, the MockServletContext was in fact present in the
      WebApplicationContext; however there was no WebSocket ServerContainer
      stored in the ServletContext.
      
      This commit addresses this issue by introducing the following.
      
      - MockServerContainer: a private mock implementation of the
        javax.websocket.server.ServerContainer interface.
      
      - MockServerContainerContextCustomizer: a ContextCustomizer that
        instantiates a new MockServerContainer and stores it in the
        ServletContext under the attribute named
        "javax.websocket.server.ServerContainer".
      
      - MockServerContainerContextCustomizerFactory: a
        ContextCustomizerFactory which creates a
        MockServerContainerContextCustomizer if WebSocket support is present
        in the classpath and the test class is annotated with
        @WebAppConfiguration. This factory is registered by default via the
        spring.factories mechanism.
      
      Issue: SPR-14367
      f7dd7575
    • S
      Polish error messages in ServletServerContainerFactoryBean · 7f16bdaf
      Sam Brannen 提交于
      Issue: SPR-14367
      7f16bdaf
  9. 22 6月, 2016 4 次提交