Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/spring-projects/spring-boot.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Sep 17, 2015
  2. Sep 12, 2015
    • Phillip Webb's avatar
      Add registerErrorPageFilter option flag · 11d59df3
      Phillip Webb authored
      Update SpringBootServletInitializer with a registerErrorPageFilter flag
      that can be used to disable ErrorPageFilter registration.
      
      Fixes gh-3603
      11d59df3
    • Phillip Webb's avatar
      Only handle status errors when sendError is called · de48223a
      Phillip Webb authored
      Update ErrorPageFilter to only handle errors when `response.sendError`
      has been called. This should allow custom @ExceptionHandlers to
      completely handle errors and return custom status codes without
      triggering the "Cannot forward to error page" log message.
      
      The Javadoc for sendError states:
      
        "The server defaults to creating the response to look like an
         HTML-formatted server error page containing the specified message"
      
      Where as setStatus states
      
        "This method is used to set the return status code when there is
         no error "
      
      Fixes gh-2745
      de48223a
    • Phillip Webb's avatar
      Add exception endpoints to tomcat-jsp sample · 5f250ebb
      Phillip Webb authored
      Update `spring-boot-sample-tomcat-jsp` to include endpoints that trigger
      exceptions. Primarily to aid testing of the ErrorPageFilter.
      
      See gh-2745
      5f250ebb
  3. Sep 11, 2015
  4. Sep 09, 2015
  5. Sep 04, 2015
  6. Sep 02, 2015
  7. Sep 01, 2015
    • Stephane Nicoll's avatar
      Store container installs in home directory · 426a8dc1
      Stephane Nicoll authored
      Previously, deployment tests were storing the container archives in the
      default location (that is `/tmp`) for a total weight of 160MB. In case
      the temp directory is cleaned on CI, these have to be downloaded again.
      
      We're now configuring cargo to store these archives in the home directory
      instead. This should improve the speed and the stability of the
      deployment tests
      
      Closes gh-3861
      426a8dc1
    • Stephane Nicoll's avatar
      Properly guard customization of application context class · 8a964814
      Stephane Nicoll authored
      SpringApplication wrongly expects spring-web to be on the classpath to
      figure out whether or not the web environment should be enabled for a
      custom context class.
      
      We now properly guard this check so that the web environment is not
      enabled (read: not checked) if `spring-web` is not available.
      
      Closes gh-3856
      8a964814
  8. Aug 29, 2015
  9. Aug 26, 2015
  10. Aug 25, 2015
  11. Aug 20, 2015
  12. Aug 17, 2015
    • Stephane Nicoll's avatar
      Properly guard DB health indicator · 11b82cc6
      Stephane Nicoll authored
      The DataSource health indicator uses `JdbcTemplate` behind the scenes
      but nothing was checking that it is actually available.
      
      `DataSourcesHealthIndicatorConfiguration` is now disabled if
      `spring-jdbc` is not on the classpath.
      
      Fixes gh-3765
      11b82cc6
  13. Aug 15, 2015
  14. Aug 11, 2015
  15. Aug 10, 2015
  16. Aug 09, 2015
  17. Aug 07, 2015
  18. Aug 05, 2015