1. 15 Jun, 2016 4 commits
  2. 14 Jun, 2016 2 commits
  3. 11 Jun, 2016 4 commits
  4. 10 Jun, 2016 3 commits
    • Phillip Webb's avatar
      Allow loading from package names without dots · a9b98cad
      Phillip Webb authored
      Update BeanDefinitionLoader to support loading from package names that
      do not contain dots.
      
      Prior to this commit `new BeanDefinitionLoader(registry, "somepackage")`
      would fail because "somepackage" exists and is a resource but does not
      contain valid XML. Somewhat surprisingly the InputStream returned by
      the resource actually contains the listing of files in the package.
      
      Fixes gh-6126
      a9b98cad
    • Ivan Sopov's avatar
      Fix potential offset errors in BasicJsonParser · 15287641
      Ivan Sopov authored
      Update BasicJsonParser to fix potential exceptions if strings happen
      to be empty.
      
      Fixes gh-6136
      15287641
    • Phillip Webb's avatar
      Polish · ed6f11d6
      Phillip Webb authored
      ed6f11d6
  5. 09 Jun, 2016 2 commits
  6. 03 Jun, 2016 1 commit
  7. 01 Jun, 2016 12 commits
  8. 26 May, 2016 1 commit
  9. 25 May, 2016 2 commits
  10. 24 May, 2016 1 commit
    • Andy Wilkinson's avatar
      Skips Cassandra and Elasticsearch tests on Windows · 275651e8
      Andy Wilkinson authored
      Neither Cassandra nor Elasticsearch starts reliably on Windows. This
      commit adds a custom class rule to the associated sample application
      tests to skip them on Windows. A class rule is used rather than a
      Unit assumption as we want to avoid starting Elasticsearch (done by
      the application context) and Cassandra (done by a test execution
      listener) and an assumption would be too late.
      275651e8
  11. 13 May, 2016 5 commits
  12. 12 May, 2016 1 commit
    • Andy Wilkinson's avatar
      Don't use a separate thread in the launcher to call app's main method · e561cc19
      Andy Wilkinson authored
      Using a separate thread to call the application's main method is
      unnecessary – the context class loader of the current thread can be
      updated instead – and makes exception and exit code handling more
      complicated than it needs to be.
      
      This commit updates the Launcher so that it calls the main method
      runner using the current (main) thread. As a result, any exception
      that's thrown will be caught by the JVM and result in a non-zero exit
      code being returned from the process.
      
      Closes gh-5922
      e561cc19
  13. 10 May, 2016 2 commits