You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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?
11 years ago
..
spring-boot-sample-actuator Add status and error messages to /trace 11 years ago
spring-boot-sample-actuator-ui Rework POMs to support automated CI release 11 years ago
spring-boot-sample-aop Polish 11 years ago
spring-boot-sample-batch Rework POMs to support automated CI release 11 years ago
spring-boot-sample-data-jpa Rework POMs to support automated CI release 11 years ago
spring-boot-sample-data-mongodb Polish 11 years ago
spring-boot-sample-integration Rework POMs to support automated CI release 11 years ago
spring-boot-sample-jetty Rework POMs to support automated CI release 11 years ago
spring-boot-sample-profile Rework POMs to support automated CI release 11 years ago
spring-boot-sample-simple Rework POMs to support automated CI release 11 years ago
spring-boot-sample-tomcat Add SpringApplicationBuilder 11 years ago
spring-boot-sample-traditional Rework POMs to support automated CI release 11 years ago
spring-boot-sample-web-jsp Polish 11 years ago
spring-boot-sample-web-static Rework POMs to support automated CI release 11 years ago
spring-boot-sample-web-ui Rework POMs to support automated CI release 11 years ago
spring-boot-sample-websocket Support single config from ServletInitializer 11 years ago
spring-boot-sample-xml Rework POMs to support automated CI release 11 years ago
README.md Documentation 11 years ago
pom.xml mongo->mongodb sample 11 years ago

README.md

Spring Boot - Samples

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