1. 16 12月, 2015 1 次提交
    • B
      Use LinkedHashmap to preserve insert order · 3be35c05
      Brian Clozel 提交于
      In several places in the spring-webmvc module, URL patterns / objects
      relationships are kept in `HashMap`s. When matching with actual URLs,
      the algorithm uses a pattern comparator to sort the matching patterns
      and select the most specific. But the underlying collection
      implementation does not keep the original order which can lead to
      inconsistencies.
      
      This commit changes the underlying collection implementation to
      `LinkedHashmap`s, in order to keep the insert order if the comparator
      does not reorder entries.
      
      Issue: SPR-13798
      3be35c05
  2. 15 12月, 2015 8 次提交
  3. 14 12月, 2015 3 次提交
  4. 13 12月, 2015 2 次提交
  5. 12 12月, 2015 5 次提交
  6. 11 12月, 2015 2 次提交
  7. 10 12月, 2015 4 次提交
  8. 09 12月, 2015 9 次提交
  9. 08 12月, 2015 4 次提交
  10. 07 12月, 2015 2 次提交