Spring Boot has an opinionated view of how to build an application with Spring.
For instance, it has conventional locations for common configuration files and has endpoints for common management and monitoring tasks.
Spring Cloud builds on top of that and adds a few features that probably all components in a system would use or occasionally need.
If you build an application context from
SpringApplication
or
SpringApplicationBuilder
, then the Bootstrap context is added as a parent to that context.
It is a feature of Spring that child contexts inherit property sources and profiles from their parent, so the
“
main
”
application context contains additional property sources, compared to building the same context without Spring Cloud Config.
The additional property sources are:
Because of the ordering rules of property sources, the
“
bootstrap
”
entries take precedence.
However, note that these do not contain any data from
bootstrap.yml
, which has very low precedence but can be used to set defaults.
You can extend the context hierarchy by setting the parent context of any
ApplicationContext
you create — for example, by using its own interface or with the
SpringApplicationBuilder
convenience methods (
parent()
,
child()
and
sibling()
).
The bootstrap context is the parent of the most senior ancestor that you create yourself.
Every context in the hierarchy has its own
“
bootstrap
”
(possibly empty) property source to avoid promoting values inadvertently from parents down to their descendants.
If there is a Config Server, every context in the hierarchy can also (in principle) have a different
spring.application.name
and, hence, a different remote property source.
Normal Spring application context behavior rules apply to property resolution: properties from a child context override those in
the parent, by name and also by property source name.
(If the child has a property source with the same name as the parent, the value from the parent is not included in the child).
Note that the
SpringApplicationBuilder
lets you share an
Environment
amongst the whole hierarchy, but that is not the default.
Thus, sibling contexts, in particular, do not need to have the same profiles or property sources, even though they may share common values with their parent.
The default property source for external configuration added by the bootstrap process is the Spring Cloud Config Server, but you can add additional sources by adding beans of type
PropertySourceLocator
to the bootstrap context (through
spring.factories
).
For instance, you can insert additional properties from a different server or from a database.
As an example, consider the following custom locator:
@Configuration
public class CustomPropertySourceLocator implements PropertySourceLocator {
@Override
public PropertySource<?> locate(Environment environment) {
return new MapPropertySource("customProperty",
Collections.<String, Object>singletonMap("property.from.sample.custom.source", "worked as intended"));
}
The
Environment
that is passed in is the one for the
ApplicationContext
about to be created — in other words, the one for which we supply additional property sources for.
It already has its normal Spring Boot-provided property sources, so you can use those to locate a property source specific to this
Environment
(for example, by keying it on
spring.application.name
, as is done in the default Spring Cloud Config Server property source locator).
If you create a jar with this class in it and then add a
META-INF/spring.factories
containing the following, the
customProperty
PropertySource
appears in any application that includes that jar on its classpath:
org.springframework.cloud.bootstrap.BootstrapConfiguration=sample.custom.CustomPropertySourceLocator
The application listens for an
EnvironmentChangeEvent
and reacts to the change in a couple of standard ways (additional
ApplicationListeners
can be added as
@Beans
by the user in the normal way).
When an
EnvironmentChangeEvent
is observed, it has a list of key values that have changed, and the application uses those to:
Note that the Config Client does not, by default, poll for changes in the
Environment
.
Generally, we would not recommend that approach for detecting changes (although you could set it up with a
@Scheduled
annotation).
If you have a scaled-out client application, it is better to broadcast the
EnvironmentChangeEvent
to all the instances instead of having them polling for changes (for example, by using the
Spring Cloud Bus
).
The
EnvironmentChangeEvent
covers a large class of refresh use cases, as long as you can actually make a change to the
Environment
and publish the event.
Note that those APIs are public and part of core Spring).
You can verify that the changes are bound to
@ConfigurationProperties
beans by visiting the
/configprops
endpoint (a normal Spring Boot Actuator feature).
For instance, a
DataSource
can have its
maxPoolSize
changed at runtime (the default
DataSource
created by Spring Boot is an
@ConfigurationProperties
bean) and grow capacity dynamically.
Re-binding
@ConfigurationProperties
does not cover another large class of use cases, where you need more control over the refresh and where you need a change to be atomic over the whole
ApplicationContext
.
To address those concerns, we have
@RefreshScope
.
When there is a configuration change, a Spring
@Bean
that is marked as
@RefreshScope
gets special treatment.
This feature addresses the problem of stateful beans that only get their configuration injected when they are initialized.
For instance, if a
DataSource
has open connections when the database URL is changed via the
Environment
, you probably want the holders of those connections to be able to complete what they are doing.
Then, the next time something borrows a connection from the pool, it gets one with the new URL.
Sometimes, it might even be mandatory to apply the
@RefreshScope
annotation on some beans which can be only initialized once. If a bean
is "immutable", you will have to either annotate the bean with
@RefreshScope
or specify the classname under the property key
spring.cloud.refresh.extra-refreshable
.
|
Important
|
If you create a
DataSource
bean yourself and the implementation is a
HikariDataSource
, return the
most specific type, in this case
HikariDataSource
. Otherwise, you will need to set
spring.cloud.refresh.extra-refreshable=javax.sql.DataSource
.
|
Refresh scope beans are lazy proxies that initialize when they are used (that is, when a method is called), and the scope acts as a cache of initialized values.
To force a bean to re-initialize on the next method call, you must invalidate its cache entry.
The
RefreshScope
is a bean in the context and has a public
refreshAll()
method to refresh all beans in the scope by clearing the target cache.
The
/refresh
endpoint exposes this functionality (over HTTP or JMX).
To refresh an individual bean by name, there is also a
refresh(String)
method.
To expose the
/refresh
endpoint, you need to add following configuration to your application:
management:
endpoints:
web:
exposure:
include: refresh
|
Note
|
@RefreshScope
works (technically) on an
@Configuration
class, but it might lead to surprising behavior.
For example, it does not mean that all the
@Beans
defined in that class are themselves in
@RefreshScope
.
Specifically, anything that depends on those beans cannot rely on them being updated when a refresh is initiated, unless it is itself in
@RefreshScope
.
In that case, it is rebuilt on a refresh and its dependencies are re-injected. At that point, they are re-initialized from the refreshed
@Configuration
).
|