1. 26 11月, 2014 6 次提交
  2. 25 11月, 2014 5 次提交
  3. 24 11月, 2014 6 次提交
    • S
      Fix typo · 2602bcbb
      Stephane Nicoll 提交于
      2602bcbb
    • S
      Fix documentation formatting · 0d00b674
      Stephane Nicoll 提交于
      Using the "quotes" substitution group by default leads to side effect
      when the "*" character is used. This is especially true for AOP pointcut
      or for MVC mappings.
      
      Plain verbatim might work most of the time unless you intend to highlight
      a piece of code or a comment.
      
      Issue: SPR-12456
      0d00b674
    • J
    • B
      Add undertow 1.1.0.Final support · bb150c47
      Brian Clozel 提交于
      Upgrade undertow dependency to 1.1.0.Final.
      Add support for undertow 1.1.0.Final in the
      UndertowRequestUpgradeStrategy, after a breaking change in the
      `io.undertow.websockets.jsr.ConfiguredServerEndpoint` constructor.
      
      Issue: SPR-12302
      bb150c47
    • B
      Fix location checks for servlet 3 resources · 161d3e30
      Brian Clozel 提交于
      SPR-12354 applied new checks to make sure that served static resources
      are under authorized locations.
      
      Prior to this change, serving static resources from Servlet 3 locations
      such as "/webjars/" would not work since those locations can be within
      one of the JARs on path. In that case, the checkLocation method would
      return false and disallow serving that static resource.
      
      This change fixes this issue by making sure to call the
      `ServletContextResource.getPath()` method for servlet context resources.
      
      Note that there's a known workaround for this issue, which is using a
      classpath scheme as location, such as:
      "classpath:/META-INF/resources/webjars/" instead of "/webjars".
      
      Issue: SPR-12432
      161d3e30
    • J
      Consistent Map<String, ?> declarations and use of LinkedHashMap for incoming... · 2b4004d1
      Juergen Hoeller 提交于
      Consistent Map<String, ?> declarations and use of LinkedHashMap for incoming JDBC operation parameters
      
      Issue: SPR-12462
      2b4004d1
  4. 23 11月, 2014 6 次提交
  5. 22 11月, 2014 5 次提交
  6. 21 11月, 2014 2 次提交
  7. 20 11月, 2014 1 次提交
    • C
      Allow non-String args in JOptCommandLinePropertySource · dff48ad8
      Chris Beams 提交于
      Prior to this commit, JOptCommandLinePropertySource prevented the
      possibility of non-String option arguments. This effectively prevents
      the use of JOpt's #ofType support (which allows specifying custom
      argument types).
      
      Now, non-String arguments are detected and converted to strings as
      necessary. JOpt's #ofType now works as expected. A test has been added
      to cover this case.
      dff48ad8
  8. 14 11月, 2014 1 次提交
    • A
      Fix bytecode generation for SpEL OpPlus · 94ee763b
      Andy Clement 提交于
      Without this change the plus operator would fail to
      include a CHECKCAST in generated bytecode when it
      was compiled in cases where one of the operands
      has a runtime type of String but a statically
      declared type that was not String (i.e. Object).
      
      Issue: SPR-12426
      94ee763b
  9. 13 11月, 2014 2 次提交
  10. 11 11月, 2014 6 次提交