1. 23 10月, 2012 9 次提交
  2. 22 10月, 2012 3 次提交
    • R
      Improve regex for parsing query params · 0721146b
      Rossen Stoyanchev 提交于
      Previously UriComponentsBuilder used a regular expression for parsing
      query name-value pairs where both name and value were expected to not
      contain neither '&', not '='. The idea is that the presence of reserved
      characters makes it impossible to guess correctly how to parse the
      query string (e.g. a=b&c).
      
      This change relaxes the constraint on query param values, allowing them
      to contain '='. In effect '&' is the ultimate separator of name-value
      pairs, and any '=' in values is ignored. For example "q=1USD=?EUR" is
      interpreted as "q equals '1USD=?EUR'".
      
      Issue: SPR-9832
      0721146b
    • R
      Update remoting chapter (minor) · 2f504dda
      Rossen Stoyanchev 提交于
      Issue: SPR-9822
      2f504dda
    • S
      Support comments in SQL scripts in JdbcTestUtils · 4aaf014c
      Sam Brannen 提交于
      Prior to this commit, utility methods in JdbcTestUtils interpreted SQL
      comments as separate statements, resulting in an exception when such a
      script is executed.
      
      This commit addresses this issue by introducing a
      readScript(lineNumberReader, String) method that accepts a comment
      prefix. Comment lines are therefore no longer returned in the parsed
      script. Furthermore, the existing readScript(lineNumberReader) method
      now delegates to this new readScript() method, supplying "--" as the
      default comment prefix.
      
      Issue: SPR-9593
      4aaf014c
  3. 20 10月, 2012 2 次提交
  4. 19 10月, 2012 1 次提交
  5. 17 10月, 2012 2 次提交
  6. 16 10月, 2012 3 次提交
  7. 15 10月, 2012 1 次提交
  8. 14 10月, 2012 3 次提交
    • S
      Fix JDK7 method order-dependent issues in SRCCT · 300d4184
      Sam Brannen 提交于
      SpringRunnerContextCacheTests suffers from JDK7-related non-determinism
      in values returned from Class#getDeclaredMethods(), which in turn
      affects JUnit and its execution of @test methods.
      
      This commit addresses this issue by introducing an
      OrderedMethodsSpringJUnit4ClassRunner that sorts the test methods
      alphabetically, which is actually required for
      SpringRunnerContextCacheTests to work properly.
      
      Issue: SPR-9789
      300d4184
    • S
      Support session & request scoped beans in the TCF · 21ebbb9c
      Sam Brannen 提交于
      This commit introduces RequestAndSessionScopedBeansWacTests which
      verifies support for request and session scoped beans in the Spring
      TestContext Framework (TCF).
      
      This support was actually introduced as an intentional side effect of
      the work performed for SPR-5243 through the addition of the new 
      WebTestExecutionListener.
      
      Issue: SPR-4588
      21ebbb9c
    • S
      Update documentation TODOs · 0bb24f29
      Sam Brannen 提交于
      Issue: SPR-9864
      0bb24f29
  9. 13 10月, 2012 16 次提交