1. 22 3月, 2019 1 次提交
  2. 13 3月, 2019 3 次提交
  3. 08 3月, 2019 2 次提交
  4. 07 3月, 2019 1 次提交
  5. 06 3月, 2019 1 次提交
  6. 05 3月, 2019 17 次提交
  7. 04 3月, 2019 1 次提交
  8. 26 2月, 2019 1 次提交
  9. 25 2月, 2019 1 次提交
  10. 15 2月, 2019 1 次提交
  11. 08 2月, 2019 2 次提交
  12. 05 2月, 2019 1 次提交
  13. 13 12月, 2018 1 次提交
  14. 21 11月, 2018 1 次提交
  15. 19 11月, 2018 1 次提交
    • H
      Fix typos · bfb49c72
      Hanope 提交于
      See gh-2019
      bfb49c72
  16. 12 11月, 2018 1 次提交
  17. 09 11月, 2018 1 次提交
  18. 02 11月, 2018 1 次提交
  19. 31 10月, 2018 2 次提交
    • R
      Increase sharing among InvocableHandlerMethod variants · 3f42e161
      Rossen Stoyanchev 提交于
      In particular between reactive and non-reactive web variants, but
      also preparing for a messaing reactive variant.
      3f42e161
    • R
      Consistent InvocableHandlerMethod implementations · 7c36549e
      Rossen Stoyanchev 提交于
      This commit makes the 3 existing InvocableHandlerMethod types more
      consistent and comparable with each other.
      
      1. Use of consistent method names and method order.
      
      2. Consistent error formatting.
      
      3. Explicit for loops for resolving argument values in webflux variant
      because that makes it more readable, creates less garabage, and it's
      the only way to bring consistency since the other two variants cannot
      throw exceptions inside Optional lambdas (vs webflux variant which can
      wrap it in a Mono).
      
      4. Use package private HandlerMethodArgumentComposite in webflux
      variant in order to pick up the resolver argument caching that the
      other two variants have.
      
      5. Polish tests.
      
      6. Add missing tests for messaging variant.
      7c36549e