1. 18 12月, 2015 14 次提交
  2. 17 12月, 2015 7 次提交
  3. 16 12月, 2015 2 次提交
    • J
      Consistent trace log messages and general polishing · 56263848
      Juergen Hoeller 提交于
      56263848
    • 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
  4. 15 12月, 2015 8 次提交
  5. 14 12月, 2015 3 次提交
  6. 13 12月, 2015 2 次提交
  7. 12 12月, 2015 4 次提交
    • A
      Fix SpEL compilation of static method/property/field operations · a28fc760
      Andy Clement 提交于
      Before this change the compilation of a method reference or property/field
      access was not properly cleaning up the stack if compilation meant
      calling a static method or accessing a static field. In these cases there
      is no need for a target object on the stack and it should be removed if
      present. For a simple expression it is harmless since the end result of
      the expression is the thing on the top of the stack, but for nested
      expressions if the inner expression suffered this issue, the outer
      expression can find itself operating on the wrong element.
      
      The particular issue covered the case of a static field access but this
      fix (and associated tests) cover static method, property and field access.
      
      Issue: SPR-13781
      a28fc760
    • J
      Upgrade to Guava 19.0 and Undertow 1.3.10 · 9d944fbe
      Juergen Hoeller 提交于
      9d944fbe
    • J
      Polishing · 0968e47b
      Juergen Hoeller 提交于
      0968e47b
    • J
      Merge pull request #935 from garyrussell/SPR-13784 · 356eaef2
      Juergen Hoeller 提交于
      Base64Utils: URL/File Safe Alphabet
      
      Issue: SPR-13784
      356eaef2