1. 24 8月, 2016 3 次提交
  2. 23 8月, 2016 5 次提交
  3. 22 8月, 2016 3 次提交
  4. 20 8月, 2016 2 次提交
    • R
      Fix reactor-core 3.0.0.RELEASE · d48c32e7
      Rob Winch 提交于
      Fix the build to work with reactor-core-3.0.0.RELEASE
      d48c32e7
    • R
      Consistent reactor-core versions · 3d68806c
      Rob Winch 提交于
      Previously the IDE (STS) was resolving a different reactor-core
      version (3.0.0.BUILD-SNAPSHOT) than the build (3.0.0.RELEASE). This
      discrepancy was due to the fact that reactor-netty now brings in
      reactor-core 3.0.0.RELEASE. Gradle's version conflict resolution is to use
      the latest version. However, the optional dependency on reactor-core
      3.0.0.BUILD-SNAPSHOT was making the build path of the IDE use the SNAPSHOT.
      
      This fix leverages a resolutionStrategy to ensure a consistent version of
      reactor-core is used throughout the entire project. It also bumps up the
      reactor-core version to 3.0.0.RELEASE to be consistent with reactor-netty.
      Care is taken to only change 3.x vesion since 2.x is still used within
      the codebase.
      3d68806c
  5. 19 8月, 2016 2 次提交
  6. 18 8月, 2016 9 次提交
  7. 17 8月, 2016 7 次提交
  8. 16 8月, 2016 6 次提交
    • S
      Clarify use of Ehcache · e802f0e7
      Stephane Nicoll 提交于
      Since we have a dedicated section regarding Ehcache that is only
      applicable to Ehcache 2.x, this commit clarifies that Ehcache 3.x is
      JSR-107 compliant and the JCache support should be used with it
      rather than attempting to configure the Ehcache 2.x support.
      e802f0e7
    • S
      Better document #result semantic · 0d59a158
      Stephane Nicoll 提交于
      Commit 240f254b has introduced support for `java.util.Optional` in the
      cache abstraction. If such type is present, the contained value is cached
      if it is present.
      
      This new feature slightly changed the semantic of `#result` that was
      documented up till this commit as the "return value of the method
      invocation". This is no longer true as `#result` for `Optional<T>`
      refers to the `T` instance and not the `Optional` instance.
      
      This commit clarifies both the javadoc and the documentation.
      
      Issue: SPR-14587
      0d59a158
    • S
      Merge pull request #1132 from igormukhin:patch-1 · c17c43a1
      Stephane Nicoll 提交于
      * pr/1132:
        Add aditional example to CronSequenceGenerator
      c17c43a1
    • I
      Add aditional example to CronSequenceGenerator · 3f0b4586
      Igor Mukhin 提交于
      CronSequenceGenerator supports comma separated expressions but does not
      provide an example for it. This commit adds such an example.
      
      Closes gh-1132
      3f0b4586
    • S
      Upgrade build to Gradle 3.0 · 669fd808
      Sam Brannen 提交于
      Issue: SPR-14569
      669fd808
    • S
      Fix formatting in Web MVC chapter of reference manual · ed467f54
      Sam Brannen 提交于
      ed467f54
  9. 13 8月, 2016 1 次提交
    • R
      Fix HtmlUnitRequestBuilder merge · 966baea9
      Rob Winch 提交于
      Previously invoking HtmlUnitRequestBuilder merge caused the pathInfo of
      the parent to be corrupted. This could additional invocations with the
      same parent.
      
      This fix ensures that the parent is no longer directly used. Instead,
      we create a copy of the parent by merging the parent that was passed in
      with the copy.
      
      Fixes SPR-14584
      966baea9
  10. 12 8月, 2016 2 次提交