1. 01 May, 2014 9 commits
  2. 30 Apr, 2014 21 commits
    • Phillip Webb's avatar
      Merge branch '1.0.x' · f53ee406
      Phillip Webb authored
      f53ee406
    • Artem Bilan's avatar
      Make `loader` Windows compatible · 471e6af2
      Artem Bilan authored
      The encoding of UTF-8 (et al.) chars in the
      JarUrlConnection has to be made explicit, otherwise
      Wdinows apparently does not pick the default(?).
      
      Fixes gh-711, Fixes gh-753
      471e6af2
    • Dave Syer's avatar
      @WebApplication->@WebAppConfiguration · f81c01d4
      Dave Syer authored
      Fixed gh-746
      f81c01d4
    • Phillip Webb's avatar
      Polish · 6025f45a
      Phillip Webb authored
      6025f45a
    • Phillip Webb's avatar
      Move TemplateAvailabilityProvider · fb13bf90
      Phillip Webb authored
      Move TemplateAvailabilityProvider from the spring-boot project to
      spring-boot-autoconfigure
      fb13bf90
    • Phillip Webb's avatar
      Polish templates code · decee8d8
      Phillip Webb authored
      decee8d8
    • Phillip Webb's avatar
      Polish gemfire sample · 1d5cddc1
      Phillip Webb authored
      1d5cddc1
    • Dave Syer's avatar
      Update Boot version in gradle samples · 2c087d47
      Dave Syer authored
      2c087d47
    • Dave Syer's avatar
      12ede868
    • Dave Syer's avatar
      Add support for custom banner · 7a33afa7
      Dave Syer authored
      SpringApplication now picks up a classpath:banner.txt
      by default, and user can choose a different one with
      banner.location. The encoding is banner.encoding.
      
      Fixes gh-458
      7a33afa7
    • Dave Syer's avatar
      Use enum for MessageCodesResolver format · 537b0c3f
      Dave Syer authored
      Fixes gh-670
      537b0c3f
    • Marcel Overdijk's avatar
    • Stephane Nicoll's avatar
      Fix build · e26e06d5
      Stephane Nicoll authored
      Two modules are still relying on the spring-boot test-jar but it was
      not generated anymore. Adding the generation of test-jar again as
      a workaround until we completely removes the use of it.
      e26e06d5
    • Dave Syer's avatar
      Add URLs from parent classloader in executable jar · 689eb3e1
      Dave Syer authored
      $ (cd spring-boot-tools; mvn clean install -DskipTests=true)
      $ (cd spring-boot-samples/spring-boot-sample-simple/; mvn clean package)
      $ java -jar spring-boot-samples/spring-boot-sample-simple/target/spring-boot-sample-simple-1.1.0.BUILD-SNAPSHOT.jar
      
      (vanilla executable jar archive: works)
      
      $ java -cp spring-boot-samples/spring-boot-sample-simple/target/spring-boot-sample-simple-1.1.0.BUILD-SNAPSHOT.jar:spring-boot-tools/spring-boot-loader/src/test/resources/jars/app.jar org.springframework.boot.loader.JarLauncher
      
      (jar archive plus vanilla plugin: works)
      
      $ (cd spring-boot-samples/spring-boot-sample-simple/target; rm -rf app && mkdir $_ && cd $_ && jar -xf ../*.jar)
      $ java -cp spring-boot-samples/spring-boot-sample-simple/target/app/ org.springframework.boot.loader.JarLauncher
      
      (exploded directory: works)
      
      $ java -cp spring-boot-tools/spring-boot-loader/s:spring-boot-tools/spring-boot-loader/src/test/resources/jars/app.jar org.springframework.boot.loader.JarLauncher
      
      (exploded directory with plugin jar: works)
      
      Potential fix for gh-529
      689eb3e1
    • Christian Dupuis's avatar
      Add more runtime metrics like information about heap, class loading and... · a66fc303
      Christian Dupuis authored
      Add more runtime metrics like information about heap, class loading and threads to the metrics infrastructure
      a66fc303
    • Fermin Gallego's avatar
      Minor improvement in simple sample test · a0972227
      Fermin Gallego authored
      a0972227
    • Artem Bilan's avatar
      Make `loader` Windows compatible · da5eae3c
      Artem Bilan authored
      The encoding of UTF-8 (et al.) chars in the
      JarUrlConnection has to be made explicit, otherwise
      Wdinows apparently does not pick the default(?).
      
      Fixes gh-711, Fixes gh-753
      da5eae3c
    • Dave Syer's avatar
      Convert actuator-ui sample to FreeMarker · 030f00c3
      Dave Syer authored
      See gh-679
      030f00c3
    • Dave Syer's avatar
      Add support for HikariDataSource · 50190a4d
      Dave Syer authored
      We still prefer Tomcat if it is available (that can change
      if the community asks loudly enough). Hikari is supported
      via the same spring.datasource.* properties as Tomcat (and
      DBCP), with some modifications:
      
      * The validation and timeout settings are not as fine-grained
      in Hikari, so many of them will simply be ignored. The most
      common options (url, username, password, driverClassName) all
      work as expected.
      
      * The Hikari team recommends using a vendor-specific DataSource
      via spring.datasource.dataSourceClassName and supplying it with
      Properties (spring.datasource.hikari.*).
      
      Hikari prefers the JDBC4 isValid() API (encapsulates vendor-
      specific queries) which is probably a good thing, but we
      haven't provided any explicit support or testing for that yet.
      
      Fixes gh-418
      50190a4d
    • Dave Syer's avatar
      Upgrade to Reactor 1.1 · f46d281b
      Dave Syer authored
      Fixes gh-706
      f46d281b
    • Stephane Nicoll's avatar
      Replace column name using reserved keyword · a27be338
      Stephane Nicoll authored
      This commit replaces the "index" property of Review to use a custom
      column name ("idx") as index is a reserved keyword in some RDMS such
      as Oracle and MySQL.
      
      Fixes gh-752
      a27be338
  3. 29 Apr, 2014 7 commits
  4. 28 Apr, 2014 3 commits