Package | Description |
---|---|
org.springframework.boot.builder |
Fluent 'builder' style API to construct a
SpringApplication . |
org.springframework.boot.cloud |
Low level support for Cloud deployments.
|
org.springframework.boot.context.config |
External configuration support allowing 'application.properties' to be loaded and used
within a Spring Boot application.
|
org.springframework.boot.context.event |
ApplicationEvents triggered by
Spring Boot. |
org.springframework.boot.env |
Spring
Environment support. |
org.springframework.boot.web.servlet.support |
Support classes for Servlet-based web servers.
|
Modifier and Type | Method and Description |
---|---|
SpringApplication |
SpringApplicationBuilder.application()
Accessor for the current application.
|
SpringApplication |
SpringApplicationBuilder.build()
Returns a fully configured
SpringApplication that is ready to run. |
SpringApplication |
SpringApplicationBuilder.build(String... args)
Returns a fully configured
SpringApplication that is ready to run. |
protected SpringApplication |
SpringApplicationBuilder.createSpringApplication(Class<?>... sources)
Creates a new
SpringApplication instances from the
given sources. |
Modifier and Type | Method and Description |
---|---|
void |
CloudFoundryVcapEnvironmentPostProcessor.postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
SpringApplication application) |
Modifier and Type | Method and Description |
---|---|
void |
ConfigFileApplicationListener.postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
SpringApplication application) |
Modifier and Type | Method and Description |
---|---|
SpringApplication |
SpringApplicationEvent.getSpringApplication() |
Constructor and Description |
---|
ApplicationContextInitializedEvent(SpringApplication application,
String[] args,
org.springframework.context.ConfigurableApplicationContext context)
Create a new
ApplicationContextInitializedEvent instance. |
ApplicationEnvironmentPreparedEvent(SpringApplication application,
String[] args,
org.springframework.core.env.ConfigurableEnvironment environment)
Create a new
ApplicationEnvironmentPreparedEvent instance. |
ApplicationFailedEvent(SpringApplication application,
String[] args,
org.springframework.context.ConfigurableApplicationContext context,
Throwable exception)
Create a new
ApplicationFailedEvent instance. |
ApplicationPreparedEvent(SpringApplication application,
String[] args,
org.springframework.context.ConfigurableApplicationContext context)
Create a new
ApplicationPreparedEvent instance. |
ApplicationReadyEvent(SpringApplication application,
String[] args,
org.springframework.context.ConfigurableApplicationContext context)
Create a new
ApplicationReadyEvent instance. |
ApplicationStartedEvent(SpringApplication application,
String[] args,
org.springframework.context.ConfigurableApplicationContext context)
Create a new
ApplicationStartedEvent instance. |
ApplicationStartingEvent(SpringApplication application,
String[] args)
Create a new
ApplicationStartingEvent instance. |
EventPublishingRunListener(SpringApplication application,
String[] args) |
SpringApplicationEvent(SpringApplication application,
String[] args) |
Modifier and Type | Method and Description |
---|---|
void |
SystemEnvironmentPropertySourceEnvironmentPostProcessor.postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
SpringApplication application) |
void |
EnvironmentPostProcessor.postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
SpringApplication application)
Post-process the given
environment . |
void |
SpringApplicationJsonEnvironmentPostProcessor.postProcessEnvironment(org.springframework.core.env.ConfigurableEnvironment environment,
SpringApplication application) |
Modifier and Type | Method and Description |
---|---|
protected org.springframework.web.context.WebApplicationContext |
SpringBootServletInitializer.run(SpringApplication application)
Called to run a fully configured
SpringApplication . |
Copyright © 2020 Pivotal Software, Inc.. All rights reserved.