Commit Graph

25788 Commits (b7798466880e616b53e0e2cf5e6e57eaa696de02)
 

Author SHA1 Message Date
Stephane Nicoll ef1f9b951d Merge pull request #20523 from m-kay
* pr/20523:
  Polish "Configure signature algorithm when using public key jwt decoder"
  Configure signature algorithm when using public key jwt decoder

Closes gh-20523
5 years ago
Stephane Nicoll 08a89b6288 Polish "Configure signature algorithm when using public key jwt decoder"
See gh-20523
5 years ago
Michael Kreis 69e33d6e62 Configure signature algorithm when using public key jwt decoder
See gh-20523
5 years ago
Andy Wilkinson 535e782dda Merge pull request #20608 from izeye
* gh-20608:
  Fix "Building Docker Images" section level

Closes gh-20608
5 years ago
Johnny Lim cc18b91723 Fix "Building Docker Images" section level
See gh-20608
5 years ago
Stephane Nicoll 615ec8b6f5 Merge branch '2.2.x'
Closes gh-20607
5 years ago
Stephane Nicoll a2d70d46e1 Merge pull request #20604 from dreis2211
* pr/20604:
  Polish BindableTests

Closes gh-20604
5 years ago
dreis2211 6ff842441c Polish BindableTests
See gh-20604
5 years ago
Stephane Nicoll 252c918484 Merge pull request #20601 from dreis2211
* pr/20601:
  Remove redundant MockitoAnnotations.initMocks()

Closes gh-20601
5 years ago
dreis2211 ef9f1d39a3 Remove redundant MockitoAnnotations.initMocks()
See gh-20601
5 years ago
Stephane Nicoll 70aa788747 Merge branch '2.2.x'
Closes gh-20600
5 years ago
Stephane Nicoll 8593270b5b Only remove trailing slash from URI value
This commit upgrades the algorithm when trailing slash are to be
ignored. Previously a root URI (i.e. "/") would result to to empty
string which is an issue for monitoring system that requires tag values
to be non empty. If the URI is a single character, the trailing is not
applied and "/" is left as is.

Closes gh-20536
5 years ago
Stephane Nicoll 9766127f9a Merge branch '2.2.x'
Closes gh-20599
5 years ago
Stephane Nicoll 1bf7d25141 Remove Java 13 CI job
Closes gh-20578
5 years ago
Brian Clozel 9e67868694 Upgrade to spring-doc-resources 0.2.0.RELEASE 5 years ago
Brian Clozel 6b9f2cac17 Fix section title levels in reference docs 5 years ago
Brian Clozel ffdf9a422f Polish Liveness and Readiness support
This commit moves the core Liveness and Readiness support to its own
`availability` package. We've made this a core concept independent of
Kubernetes.

Spring Boot now produces `LivenessStateChanged` and
`ReadinessStateChanged` events as part of the typical application
lifecycle.

Liveness and Readiness Probes (`HealthIndicator` components and health
groups) are still configured only when deployed on Kubernetes.

This commit also improves the documentation around Probes best practices
and container lifecycle considerations.

See gh-19593
5 years ago
Andy Wilkinson 3edc1c3a7d Merge pull request #20585 from dreis2211
* gh-20585:
  Upgrade to Gradle 6.3 RC4

Closes gh-20585
5 years ago
dreis2211 7a77dbdea8 Upgrade to Gradle 6.3 RC4
See gh-20585
5 years ago
Andy Wilkinson 6cff66ac4d Merge branch '2.2.x'
Closes gh-20590
5 years ago
Andy Wilkinson 9e7ab46ecc Merge branch '2.1.x' into 2.2.x
Closes gh-20589
5 years ago
Andy Wilkinson 5e61f0d7b1 Merge pull request #20583 from j0rdanit0
* gh-20583:
  Link to correct factory in TomcatReactiveWebServerFactory's javadoc

Closes gh-20583
5 years ago
Jordan Simpson 0d9d0f8532 Link to correct factory in TomcatReactiveWebServerFactory's javadoc
See gh-20583
5 years ago
Andy Wilkinson c3b04d7376 Merge branch '2.2.x'
Closes gh-20588
5 years ago
Andy Wilkinson 242e6b9974 Merge branch '2.1.x' into 2.2.x
Closes gh-20587
5 years ago
Andy Wilkinson 4eb393ec5b Merge pull request #20577 from dreis2211
* gh-20577:
  Only suggest Ubuntu versions available in the Docker registry

Closes gh-20577
5 years ago
dreis2211 e6abcacf1a Only suggest Ubuntu versions available in the Docker registry
See gh-20577
5 years ago
Scott Frederick 3f378e1276 Add command-line options for Gradle bootBuildImage parameters
This commit adds support for setting the image name and builder
parameters of the Gradle bootBuildImage task using command-line
options as an alternative to DSL configuration.

See gh-20520
5 years ago
Brian Clozel b30e5a60c5 Polish
See gh-19593
5 years ago
Stephane Nicoll b546415d32 Merge branch '2.2.x'
See gh-20568
5 years ago
Stephane Nicoll 833f0a1db3 Merge branch '2.1.x' into 2.2.x
See gh-20567
5 years ago
Stephane Nicoll d0ccb59931 Revert "Upgrade CI images to Ubuntu Bionic 20200311"
This reverts commit d25286c5

Closes gh-20566
5 years ago
Stephane Nicoll e87be17074 Merge branch '2.2.x' 5 years ago
Stephane Nicoll 168326d9e4 Polish
See gh-20576
5 years ago
Stephane Nicoll f239a440dd Merge branch '2.2.x' 5 years ago
dreis2211 0e796479dc Add Java 14 CI
Closes gh-20576
5 years ago
Stephane Nicoll 579a6ac254 Adapt tests for support for Java 14
See gh-20576
5 years ago
Andy Wilkinson f5e1bad900 Polish 5 years ago
Brian Clozel fd0b2f6695 Add Kubernetes Liveness and Readiness Probes support
Prior to this commit and as of Spring Boot 2.2.0, we would advise
developers to use the Actuator health groups to define custom "liveness"
and "readiness" groups and configure them with subsets of existing
health indicators.

This commit addresses several limitations with that approach.

First, `LivenessState` and `ReadinessState` are promoted to first class
concepts in Spring Boot applications. These states should not only based
on periodic health checks. Applications should be able to track changes
(and adapt their behavior) or update states (when an error happens).

The `ApplicationStateProvider` can be injected and used by applications
components to get the current application state. Components can also
track specific `ApplicationEvent` to be notified of changes, like
`ReadinessStateChangedEvent` and `LivenessStateChangedEvent`.
Components can also publish such events with an
`ApplicationEventPublisher`. Spring Boot will track startup event and
application context state to update the liveness and readiness state of
the application. This infrastructure is available in the
main spring-boot module.

If Spring Boot Actuator is on the classpath, additional
`HealthIndicator` will be contributed to the application:
`"LivenessProveHealthIndicator"` and `"ReadinessProbeHealthIndicator"`.
Also, "liveness" and "readiness" Health groups will be defined if
they're not configured already.

Closes gh-19593
5 years ago
Brian Clozel b680db6cd8 Add HealthEndpointGroupsRegistry and its Customizer
Prior to this commit, `HealthContributor` would be exposed under the
main `HealthEndpoint` and subgroups, `HealthEndpointGroups`. Groups are
driven by configuration properties and there was no way to contribute
programmatically new groups.

This commit introduces the `HealthEndpointGroupsRegistry` (a mutable
version of `HealthEndpointGroups`) and a
`HealthEndpointGroupsRegistryCustomizer`. This allows configurations to
add/remove groups during Actuator auto-configuration.

Closes gh-20554
5 years ago
Brian Clozel 4b7ed5efef Override CloudPlatform auto-detection with property
This commit adds a new `"spring.main.cloud-platform"` configuration
property that overrides the `CloudPlatform` detection.

This makes it easier to enable paltform-specific features when running
applications locally or when writing integration tests.

Closes gh-20553
5 years ago
Stephane Nicoll 0b7f198b54 Publish Maven plugin API
This commit enables javadoc generator for the Spring Boot Maven plugin.

This also harmonizes the structure of the documentation, with an `/api`
and a `/reference` root directories for the javadoc and the reference
guide respectively.

Closes gh-20127
5 years ago
Stephane Nicoll 58a45c53ac Upgrade to Groovy 2.5.10
Closes gh-20575
5 years ago
Stephane Nicoll 7014cc55aa Merge pull request #19475 from bono007
* pr/19475:
  Polish "Add 'threads' configuration group for embedded containers"
  Add 'threads' configuration group for embedded containers

Closes gh-19475
5 years ago
Stephane Nicoll 5893786cbb Polish "Add 'threads' configuration group for embedded containers"
See gh-19475
5 years ago
cbono 208f58104a Add 'threads' configuration group for embedded containers
See gh-19475
5 years ago
Stephane Nicoll 5a687dfa89 Merge branch '2.2.x' 5 years ago
Stephane Nicoll bece0f1360 Start building against Spring Kafka 2.3.7 snapshots
See gh-20574
5 years ago
Stephane Nicoll 96cffb9dd3 Start building against Spring Data Moore SR6 snapshots
See gh-20573
5 years ago
Stephane Nicoll e940e751c1 Start building against Spring Framework 5.2.5 snapshots
See gh-20571
5 years ago