1. 19 Jul, 2016 2 commits
  2. 18 Jul, 2016 4 commits
  3. 13 Jul, 2016 6 commits
  4. 12 Jul, 2016 1 commit
    • Andy Wilkinson's avatar
      Update admin MBean to only be ready when its own context is ready · c2db9fa3
      Andy Wilkinson authored
      Previously, if there was a hierarchy of SpringApplications, the admin
      MBean would report that the application was ready as soon as any
      application in the hierarchy was ready. This could lead to a client
      trying to query a property in the environment before it's available.
      
      This commit updates the MBean registrar to that the MBean only reports
      that the application is ready when the context that contains the
      registrar has refreshed and fired its ApplicationReadyEvent.
      
      Closes gh-6362
      c2db9fa3
  5. 11 Jul, 2016 3 commits
  6. 08 Jul, 2016 1 commit
  7. 07 Jul, 2016 1 commit
    • Stephane Nicoll's avatar
      Remove `@Primary` from `IntegrationMBeanExporter` · bbb29dd7
      Stephane Nicoll authored
      Commit 3ea84f9e has wrongly introduced a `@Primary` marker on
      `IntegrationMBeanExporter` so any use of both Spring's JMX support
      and Spring Integration's JMX support leads to an exception. This commit
      makes sure to remove the unnecessary `@Primary`
      
      Closes gh-6328
      bbb29dd7
  8. 04 Jul, 2016 5 commits
  9. 01 Jul, 2016 12 commits
  10. 30 Jun, 2016 1 commit
    • Andy Wilkinson's avatar
      Check that URL is actually a file URL before getting a File from it · 02e989c8
      Andy Wilkinson authored
      Previously, Log4J2LoggingSystem used ResourceUtils.isFileURL(URL) to
      check that the URL of the configuration was suitable for accessing as a
      File. Unfortunately, this fails when the URL’s protocol is vfs or
      vfsfile as both return true and then fail when the URL is subsequently
      passed into ResourceUtils.getFile(URL).
      
      This commit switches to checking that the URL’s protocol is file,
      the only protocol that will allow getFile(URL) to succeed.
      
      Closes gh-6246
      02e989c8
  11. 29 Jun, 2016 2 commits
  12. 27 Jun, 2016 2 commits