Commit cd5ff6e4 authored by Phillip Webb's avatar Phillip Webb

Merge branch '2.3.x'

Closes gh-24404
parents 93d83342 11f285bd
...@@ -21,7 +21,6 @@ import io.micrometer.core.instrument.MeterRegistry; ...@@ -21,7 +21,6 @@ import io.micrometer.core.instrument.MeterRegistry;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.springframework.boot.actuate.autoconfigure.integration.IntegrationGraphEndpointAutoConfiguration; import org.springframework.boot.actuate.autoconfigure.integration.IntegrationGraphEndpointAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.metrics.amqp.RabbitMetricsAutoConfiguration;
import org.springframework.boot.actuate.autoconfigure.metrics.test.MetricsRun; import org.springframework.boot.actuate.autoconfigure.metrics.test.MetricsRun;
import org.springframework.boot.autoconfigure.AutoConfigurations; import org.springframework.boot.autoconfigure.AutoConfigurations;
import org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration; import org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration;
...@@ -30,7 +29,7 @@ import org.springframework.boot.test.context.runner.ApplicationContextRunner; ...@@ -30,7 +29,7 @@ import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
/** /**
* Tests for {@link RabbitMetricsAutoConfiguration}. * Tests for {@link IntegrationMetricsAutoConfiguration}.
* *
* @author Artem Bilan * @author Artem Bilan
*/ */
......
...@@ -1171,7 +1171,7 @@ class WebMvcAutoConfigurationTests { ...@@ -1171,7 +1171,7 @@ class WebMvcAutoConfigurationTests {
private int exceptionResolvers = 0; private int exceptionResolvers = 0;
@Bean @Bean
WebMvcRegistrations webMvcRegistrationsHandlerAdapter() { WebMvcRegistrations webMvcRegistrationsExceptionResolver() {
return new WebMvcRegistrations() { return new WebMvcRegistrations() {
@Override @Override
......
...@@ -6810,7 +6810,7 @@ For setting the timeout of the session you can use the configprop:spring.session ...@@ -6810,7 +6810,7 @@ For setting the timeout of the session you can use the configprop:spring.session
If that property is not set with a Servlet web appplication, the auto-configuration falls back to the value of configprop:server.servlet.session.timeout[]. If that property is not set with a Servlet web appplication, the auto-configuration falls back to the value of configprop:server.servlet.session.timeout[].
You can take control over Spring Session's configuration using `@Enable*HttpSession` (Servlet) or `@Enable@WebSession` (Reactive). You can take control over Spring Session's configuration using `@Enable*HttpSession` (Servlet) or `@Enable*WebSession` (Reactive).
This will cause the auto-configuration to back off. This will cause the auto-configuration to back off.
Spring Session can then be configured using the annotation's attributes rather than the previously described configuration properties. Spring Session can then be configured using the annotation's attributes rather than the previously described configuration properties.
......
...@@ -152,7 +152,7 @@ class JarFileWrapperTests { ...@@ -152,7 +152,7 @@ class JarFileWrapperTests {
} }
@Test @Test
void streamDelegatestoParent() { void streamDelegatesToParent() {
this.wrapper.stream(); this.wrapper.stream();
this.parent.verify(Call.STREAM); this.parent.verify(Call.STREAM);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment