1. 06 Feb, 2014 15 commits
  2. 05 Feb, 2014 3 commits
  3. 04 Feb, 2014 14 commits
  4. 03 Feb, 2014 4 commits
  5. 01 Feb, 2014 2 commits
    • Phillip Webb's avatar
      Polish · 6431fef9
      Phillip Webb authored
      6431fef9
    • Phillip Webb's avatar
      Automatically detect 'development' profile · a97bcfe3
      Phillip Webb authored
      Detect when an application is running in development (by the presence
      of a build file) and automatically add a 'development' profile.
      
      Additional detectors can be developed by implementing the
      `ProfileDetector` interface and registering with the `SpringApplication`
      
      Fixes gh-296
      a97bcfe3
  6. 31 Jan, 2014 2 commits
    • Phillip Webb's avatar
      Separate Application Listener and Initializer · 643295cc
      Phillip Webb authored
      Update SpringApplication so that ApplicationListener and
      ApplicationInitializer methods must be called separately. This helps
      to prevent unexpected side effects when calling the setters and
      also encourages separation of concerns.
      
      The few situations where a class was both an ApplicationInitializer
      and ApplicationListener are now handled by registering an inner
      listener from the `initialize` method.
      643295cc
    • Phillip Webb's avatar
      Rename SpringApplication Events · 92f01cf9
      Phillip Webb authored
      Move SpringApplication events to their own package, create a common
      base class and rename classes to match Spring conventions.
      92f01cf9