1. 02 8月, 2019 1 次提交
  2. 01 8月, 2019 1 次提交
  3. 16 7月, 2019 1 次提交
  4. 15 7月, 2019 1 次提交
    • P
      Add multi-prefix comment support for SQL scripts · 17914fc4
      Phillip Webb 提交于
      Update `ResourceDatabasePopulator` and `ScriptUtils` so that more than
      one comment prefix can be used when processing SQL scripts. This
      feature is particularly useful when dealing with scripts provided by
      Quartz since they often use a mix `--` and `#`.
      
      Closes gh-23289
      17914fc4
  5. 24 5月, 2019 1 次提交
  6. 03 5月, 2019 1 次提交
  7. 28 3月, 2019 1 次提交
  8. 23 3月, 2019 1 次提交
  9. 22 3月, 2019 2 次提交
  10. 09 2月, 2019 1 次提交
  11. 08 2月, 2019 1 次提交
    • M
      Fix for ScriptUtils failure when '--' occurs inside a multi-line comment on... · 82dbde13
      Mansur Mustaquim 提交于
      Fix for ScriptUtils failure when '--' occurs inside a multi-line comment on the same line as '*/' (#22392)
      
      * Test for multi-line comment block where the comment end delimiter occurs on a line starting with the single-line comment prefix
      * ScriptUtils successfully parses a SQL script containing a multi-line comment block where the comment-end delimiter occurs on a line starting with the single-line comment prefix.
      82dbde13
  12. 12 12月, 2018 1 次提交
  13. 04 12月, 2018 2 次提交
  14. 05 11月, 2018 1 次提交
  15. 17 9月, 2018 1 次提交
  16. 31 8月, 2018 1 次提交
    • J
      HibernateTransactionManager lazily acquires JDBC Connection · 78cad0fd
      Juergen Hoeller 提交于
      Aligned with HibernateJpaDialect, using ConnectionHandle as functional interface now. Also, LazyConnectionDataSourceProxy supports Connection holdability as applied by HibernateTransactionManager, for use with prepareConnection=true.
      
      Issue: SPR-17216
      78cad0fd
  17. 13 8月, 2018 2 次提交
    • S
      Polish contribution · bdac3915
      Sam Brannen 提交于
      Issue: SPR-17120
      bdac3915
    • C
      Add backslash escape support to containsSqlScriptDelimiters · 24ed6de6
      Chris Harding 提交于
      Prior to this commit, ScriptUtils supported MySQL-style escapes ('\\')
      when splitting a script into statements; however, MySQL-style escapes
      were not supported when determining if a given script contained a
      specified statement delimiter. This caused executeSqlScript() to
      erroneously fallback to a newline as the statement separator in such
      cases.
      
      This commit fixes this issue by implementing the same check for
      MySQL-style escapes in containsSqlScriptDelimiters() that was already
      present in splitSqlScript().
      
      Issue: SPR-17120
      24ed6de6
  18. 20 7月, 2018 1 次提交
  19. 19 7月, 2018 1 次提交
  20. 05 7月, 2018 1 次提交
  21. 04 7月, 2018 1 次提交
  22. 01 7月, 2018 1 次提交
  23. 28 6月, 2018 3 次提交
    • P
      Organize imports · 81451aa8
      Phillip Webb 提交于
      Reorganize imports to ensure consistent ordering. This commit also
      expands any `.*` static imports in favor of using fully-qualified
      method references.
      
      Issue: SPR-16968
      81451aa8
    • P
      Use consistent class design · eeebd51f
      Phillip Webb 提交于
      Update all classes so that inner classes are always last. Also
      ensure that utility classes are always final and have a private
      constructor and make exceptions final whenever possible.
      
      Issue: SPR-16968
      eeebd51f
    • P
      Fix javadoc checkstyle issues · e0480f75
      Phillip Webb 提交于
      Fix checkstyle violations for javadoc.
      
      Issue: SPR-16968
      e0480f75
  24. 17 3月, 2018 1 次提交
  25. 06 3月, 2018 1 次提交
  26. 26 2月, 2018 1 次提交
  27. 14 2月, 2018 1 次提交
  28. 15 9月, 2017 1 次提交
    • S
      Revisit nullability annotations · 1bc93e3d
      Sebastien Deleuze 提交于
      This commit introduces the following changes.
      
      1) It adds a new Spring @NonNull annotation which allows to apply
      @NonNullApi semantic on a specific element, like @Nullable does.
      Combined with @Nullable, it allows partial null-safety support when
      package granularity is too broad.
      
      2) @Nullable and @NonNull can apply to ElementType.TYPE_USE in order
      to be used on generic type arguments (SPR-15942).
      
      3) Annotations does not apply to ElementType.TYPE_PARAMETER anymore
      since it is not supported yet (applicability for such use case is
      controversial and need to be discussed).
      
      4) @NonNullApi does not apply to ElementType.FIELD anymore since in a
      lot of use cases (private, protected) it is not part for the public API
      + its usage should remain opt-in. A dedicated @NonNullFields annotation
      has been added in order to set fields default to non-nullable.
      
      5) Updated Javadoc and reference documentation.
      
      Issue: SPR-15756
      1bc93e3d
  29. 17 8月, 2017 1 次提交
  30. 20 7月, 2017 1 次提交
  31. 19 7月, 2017 2 次提交
  32. 30 6月, 2017 1 次提交
  33. 13 6月, 2017 1 次提交
  34. 09 6月, 2017 1 次提交