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.
345c0fc5a4
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 | 11 years ago | |
spring-boot-sample-actuator-ui | 11 years ago | |
spring-boot-sample-aop | 11 years ago | |
spring-boot-sample-batch | 11 years ago | |
spring-boot-sample-data-jpa | 11 years ago | |
spring-boot-sample-data-mongodb | 11 years ago | |
spring-boot-sample-integration | 11 years ago | |
spring-boot-sample-jetty | 11 years ago | |
spring-boot-sample-profile | 11 years ago | |
spring-boot-sample-simple | 11 years ago | |
spring-boot-sample-tomcat | 11 years ago | |
spring-boot-sample-traditional | 11 years ago | |
spring-boot-sample-web-jsp | 11 years ago | |
spring-boot-sample-web-static | 11 years ago | |
spring-boot-sample-web-ui | 11 years ago | |
spring-boot-sample-websocket | 11 years ago | |
spring-boot-sample-xml | 11 years ago | |
README.md | 11 years ago | |
pom.xml | 11 years ago |
README.md
Spring Boot - Samples
We are currently still working on documentation for Spring Boot. Please check back in the future.