spring-boot/spring-boot-samples
Dave Syer 345c0fc5a4 Add SpringApplicationBuilder
Builder for SpringApplication and ApplicationContext instances with
convenient fluent API and context hierarchy support. Simple example
of a context hierarchy:

   new SpringApplicationBuilder(ParentConfig.class)
               .child(ChildConfig.class).run(args);

Another common use case is setting default arguments, e.g.
active Spring profiles, to set up the environment for an application:

     new SpringApplicationBuilder(Application.class).profiles("server")
 		.defaultArgs("--transport=local").run(args);

If your needs are simpler, consider using the static convenience
methods in SpringApplication instead.

[#49703716] [bs-116] Parent context for some beans maybe?
2013-10-02 07:06:12 -04:00
..
spring-boot-sample-actuator Add status and error messages to /trace 2013-10-01 14:48:07 -04:00
spring-boot-sample-actuator-ui Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-aop Polish 2013-09-18 12:50:47 -07:00
spring-boot-sample-batch Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-data-jpa Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-data-mongodb Polish 2013-09-18 12:50:47 -07:00
spring-boot-sample-integration Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-jetty Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-profile Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-simple Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-tomcat Add SpringApplicationBuilder 2013-10-02 07:06:12 -04:00
spring-boot-sample-traditional Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-web-jsp Polish 2013-09-30 09:50:38 -07:00
spring-boot-sample-web-static Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-web-ui Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
spring-boot-sample-websocket Support single config from ServletInitializer 2013-09-25 20:58:27 -07:00
spring-boot-sample-xml Rework POMs to support automated CI release 2013-09-05 22:05:29 -07:00
pom.xml mongo->mongodb sample 2013-09-13 08:13:24 -07:00
README.md Documentation 2013-08-05 22:36:22 -07:00

Spring Boot - Samples

We are currently still working on documentation for Spring Boot. Please check back in the future.