1. 28 Nov, 2016 10 commits
  2. 25 Nov, 2016 10 commits
  3. 24 Nov, 2016 16 commits
  4. 23 Nov, 2016 4 commits
    • Stephane Nicoll's avatar
      Polish customize Cassandra's Cluster · 64e08994
      Stephane Nicoll authored
      Closes gh-7320
      64e08994
    • Eddú Meléndez's avatar
      Allow to customize Casssandra's Cluster · cb3d14a3
      Eddú Meléndez authored
      This commit allows to configure special customizers to be used by
      Cluster.
      
      Closes gh-7312
      cb3d14a3
    • Andy Wilkinson's avatar
      Merge branch '1.4.x' into 1.5.x · 655ab987
      Andy Wilkinson authored
      655ab987
    • Andy Wilkinson's avatar
      Treat URLs for same file in nested archive and from jar root as equal · 5e79657d
      Andy Wilkinson authored
      Consider the following two URLs:
      
      jar:file:/test.jar!/BOOT-INF/classes!/foo.txt
      jar:file:/test.jar!/BOOT-INF/classes/foo.txt
      
      They both reference the same foo.txt file in the BOOT-INF/classes
      directory of test.jar, however the first URL does so via the
      nested BOOT-INF/classes archive. Previously, this difference in the
      URLs would lead to PathMatchingResourcePatternResolver returning two
      resources for foo.txt when asked to find all resources matching the
      pattern classpath*:/**/*.txt.
      
      This commit updates our Handler that is used for jar: URLs to consider
      the two URLs above to be equivalent such that url1 is equal to url2
      and the two urls will produce the same hash code.
      
      Closes gh-7449
      5e79657d