1. 30 Apr, 2014 8 commits
    • 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
  2. 29 Apr, 2014 7 commits
  3. 28 Apr, 2014 9 commits
  4. 27 Apr, 2014 1 commit
  5. 26 Apr, 2014 7 commits
  6. 25 Apr, 2014 8 commits