parent
b43d97b359
commit
1d45016d8c
|
@ -1 +1 @@
|
||||||
javaFormatVersion=0.0.41
|
javaFormatVersion=0.0.43
|
||||||
|
|
|
@ -37,6 +37,6 @@ public enum InfoContributorFallback {
|
||||||
/**
|
/**
|
||||||
* Do not fall back, thereby disabling the info contributor.
|
* Do not fall back, thereby disabling the info contributor.
|
||||||
*/
|
*/
|
||||||
DISABLE;
|
DISABLE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -116,7 +116,7 @@ public class SignalFxProperties extends StepRegistryProperties {
|
||||||
/**
|
/**
|
||||||
* Delta histogram.
|
* Delta histogram.
|
||||||
*/
|
*/
|
||||||
DELTA;
|
DELTA
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -241,7 +241,7 @@ public class TracingProperties {
|
||||||
* <a href="https://github.com/openzipkin/b3-propagation#multiple-headers">B3
|
* <a href="https://github.com/openzipkin/b3-propagation#multiple-headers">B3
|
||||||
* multiple headers</a> propagation.
|
* multiple headers</a> propagation.
|
||||||
*/
|
*/
|
||||||
B3_MULTI;
|
B3_MULTI
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@ import static org.mockito.Mockito.mock;
|
||||||
* Tests for {@link InfluxDbHealthContributorAutoConfiguration}.
|
* Tests for {@link InfluxDbHealthContributorAutoConfiguration}.
|
||||||
*
|
*
|
||||||
* @author Eddú Meléndez
|
* @author Eddú Meléndez
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
|
|
|
@ -62,10 +62,10 @@ import org.springframework.web.filter.OncePerRequestFilter;
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
* @see JerseyEndpointResourceFactory
|
* @see JerseyEndpointResourceFactory
|
||||||
*/
|
*/
|
||||||
public class JerseyWebEndpointIntegrationTests
|
class JerseyWebEndpointIntegrationTests
|
||||||
extends AbstractWebEndpointIntegrationTests<AnnotationConfigServletWebServerApplicationContext> {
|
extends AbstractWebEndpointIntegrationTests<AnnotationConfigServletWebServerApplicationContext> {
|
||||||
|
|
||||||
public JerseyWebEndpointIntegrationTests() {
|
JerseyWebEndpointIntegrationTests() {
|
||||||
super(JerseyWebEndpointIntegrationTests::createApplicationContext,
|
super(JerseyWebEndpointIntegrationTests::createApplicationContext,
|
||||||
JerseyWebEndpointIntegrationTests::applyAuthenticatedConfiguration);
|
JerseyWebEndpointIntegrationTests::applyAuthenticatedConfiguration);
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,7 @@ import static org.mockito.Mockito.mock;
|
||||||
* Tests for {@link InfluxDbHealthIndicator}.
|
* Tests for {@link InfluxDbHealthIndicator}.
|
||||||
*
|
*
|
||||||
* @author Eddú Meléndez
|
* @author Eddú Meléndez
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
|
|
|
@ -482,7 +482,7 @@ public class CassandraProperties {
|
||||||
/**
|
/**
|
||||||
* No compression.
|
* No compression.
|
||||||
*/
|
*/
|
||||||
NONE;
|
NONE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -224,7 +224,7 @@ public class JacksonProperties {
|
||||||
* Refuse to decide implicit mode and instead throw an InvalidDefinitionException
|
* Refuse to decide implicit mode and instead throw an InvalidDefinitionException
|
||||||
* for ambiguous cases.
|
* for ambiguous cases.
|
||||||
*/
|
*/
|
||||||
EXPLICIT_ONLY;
|
EXPLICIT_ONLY
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -463,6 +463,7 @@ public class ServerProperties {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to reject requests with illegal header names or values.
|
* Whether to reject requests with illegal header names or values.
|
||||||
|
* @deprecated since 2.7.12 for removal in 3.3.0
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "2.7.12", forRemoval = true) // Remove in 3.3
|
@Deprecated(since = "2.7.12", forRemoval = true) // Remove in 3.3
|
||||||
private boolean rejectIllegalHeader = true;
|
private boolean rejectIllegalHeader = true;
|
||||||
|
|
|
@ -41,6 +41,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* @author Moritz Halbritter
|
* @author Moritz Halbritter
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
|
|
|
@ -33,7 +33,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
*
|
*
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
*/
|
*/
|
||||||
public class LiquibasePropertiesTests {
|
class LiquibasePropertiesTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void valuesOfShowSummaryMatchValuesOfUpdateSummaryEnum() {
|
void valuesOfShowSummaryMatchValuesOfUpdateSummaryEnum() {
|
||||||
|
|
|
@ -31,6 +31,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* Tests for {@link MongoPropertiesClientSettingsBuilderCustomizer}.
|
* Tests for {@link MongoPropertiesClientSettingsBuilderCustomizer}.
|
||||||
*
|
*
|
||||||
* @author Scott Frederick
|
* @author Scott Frederick
|
||||||
|
* @deprecated since 3.1.0 for removal in 3.3.0
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "3.1.0", forRemoval = true)
|
@Deprecated(since = "3.1.0", forRemoval = true)
|
||||||
class MongoPropertiesClientSettingsBuilderCustomizerTests {
|
class MongoPropertiesClientSettingsBuilderCustomizerTests {
|
||||||
|
|
|
@ -211,7 +211,7 @@ public @interface SpringBootTest {
|
||||||
* that class does not have a main method, a test-specific
|
* that class does not have a main method, a test-specific
|
||||||
* {@link SpringApplication} will be used.
|
* {@link SpringApplication} will be used.
|
||||||
*/
|
*/
|
||||||
WHEN_AVAILABLE;
|
WHEN_AVAILABLE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
@SpringBootTest
|
@SpringBootTest
|
||||||
@DisabledIfDockerUnavailable
|
@DisabledIfDockerUnavailable
|
||||||
@ImportTestcontainers(LoadTimeWeaverAwareConsumerContainers.class)
|
@ImportTestcontainers(LoadTimeWeaverAwareConsumerContainers.class)
|
||||||
public class LoadTimeWeaverAwareConsumerImportTestcontainersTests implements LoadTimeWeaverAwareConsumerContainers {
|
class LoadTimeWeaverAwareConsumerImportTestcontainersTests implements LoadTimeWeaverAwareConsumerContainers {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private LoadTimeWeaverAwareConsumer consumer;
|
private LoadTimeWeaverAwareConsumer consumer;
|
||||||
|
|
|
@ -43,7 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
@TestPropertySource(properties = "spring.testcontainers.beans.startup=parallel")
|
@TestPropertySource(properties = "spring.testcontainers.beans.startup=parallel")
|
||||||
@DisabledIfDockerUnavailable
|
@DisabledIfDockerUnavailable
|
||||||
@ExtendWith(OutputCaptureExtension.class)
|
@ExtendWith(OutputCaptureExtension.class)
|
||||||
public class TestContainersParallelStartupIntegrationTests {
|
class TestContainersParallelStartupIntegrationTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void startsInParallel(CapturedOutput out) {
|
void startsInParallel(CapturedOutput out) {
|
||||||
|
|
|
@ -42,7 +42,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
@DisabledIfDockerUnavailable
|
@DisabledIfDockerUnavailable
|
||||||
@ExtendWith(OutputCaptureExtension.class)
|
@ExtendWith(OutputCaptureExtension.class)
|
||||||
@ImportTestcontainers(Containers.class)
|
@ImportTestcontainers(Containers.class)
|
||||||
public class TestContainersParallelStartupWithImportTestcontainersIntegrationTests {
|
class TestContainersParallelStartupWithImportTestcontainersIntegrationTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void startsInParallel(CapturedOutput out) {
|
void startsInParallel(CapturedOutput out) {
|
||||||
|
|
|
@ -25,6 +25,7 @@ import org.springframework.boot.configurationsample.ConfigurationProperties;
|
||||||
* Deprecated configuration properties.
|
* Deprecated configuration properties.
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
|
* @deprecated deprecated
|
||||||
*/
|
*/
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
|
|
|
@ -22,6 +22,7 @@ import org.springframework.boot.configurationsample.ConfigurationProperties;
|
||||||
* Sample for testing method configuration with deprecated class.
|
* Sample for testing method configuration with deprecated class.
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
|
* @deprecated deprecated
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public class DeprecatedClassMethodConfig {
|
public class DeprecatedClassMethodConfig {
|
||||||
|
|
|
@ -22,6 +22,7 @@ import org.springframework.boot.configurationsample.ConfigurationProperties;
|
||||||
* Deprecated configuration properties.
|
* Deprecated configuration properties.
|
||||||
*
|
*
|
||||||
* @author Stephane Nicoll
|
* @author Stephane Nicoll
|
||||||
|
* @deprecated deprecated
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@ConfigurationProperties(prefix = "deprecated")
|
@ConfigurationProperties(prefix = "deprecated")
|
||||||
|
|
|
@ -37,7 +37,7 @@ import org.junit.jupiter.api.io.TempDir;
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
*/
|
*/
|
||||||
@Disabled("Only used for manual testing")
|
@Disabled("Only used for manual testing")
|
||||||
public class VirtualZipPerformanceTests {
|
class VirtualZipPerformanceTests {
|
||||||
|
|
||||||
@TempDir
|
@TempDir
|
||||||
Path temp;
|
Path temp;
|
||||||
|
|
|
@ -280,7 +280,7 @@ public final class ConfigData {
|
||||||
* profile specific sibling imports.
|
* profile specific sibling imports.
|
||||||
* @since 2.4.5
|
* @since 2.4.5
|
||||||
*/
|
*/
|
||||||
PROFILE_SPECIFIC;
|
PROFILE_SPECIFIC
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -470,7 +470,7 @@ class ConfigDataEnvironmentContributor implements Iterable<ConfigDataEnvironment
|
||||||
/**
|
/**
|
||||||
* A valid location that contained nothing to load.
|
* A valid location that contained nothing to load.
|
||||||
*/
|
*/
|
||||||
EMPTY_LOCATION;
|
EMPTY_LOCATION
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -326,7 +326,7 @@ class ConfigDataEnvironmentContributors implements Iterable<ConfigDataEnvironmen
|
||||||
/**
|
/**
|
||||||
* Throw an exception if an inactive contributor contains a bound value.
|
* Throw an exception if an inactive contributor contains a bound value.
|
||||||
*/
|
*/
|
||||||
FAIL_ON_BIND_TO_INACTIVE_SOURCE;
|
FAIL_ON_BIND_TO_INACTIVE_SOURCE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,6 @@ public enum BindMethod {
|
||||||
/**
|
/**
|
||||||
* Value object using constructor binding.
|
* Value object using constructor binding.
|
||||||
*/
|
*/
|
||||||
VALUE_OBJECT;
|
VALUE_OBJECT
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,6 +223,8 @@ public final class ClientHttpRequestFactories {
|
||||||
/**
|
/**
|
||||||
* Support for
|
* Support for
|
||||||
* {@link org.springframework.http.client.OkHttp3ClientHttpRequestFactory}.
|
* {@link org.springframework.http.client.OkHttp3ClientHttpRequestFactory}.
|
||||||
|
*
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
|
|
|
@ -39,6 +39,6 @@ public enum GracefulShutdownResult {
|
||||||
/**
|
/**
|
||||||
* The server was shutdown immediately, ignoring any active requests.
|
* The server was shutdown immediately, ignoring any active requests.
|
||||||
*/
|
*/
|
||||||
IMMEDIATE;
|
IMMEDIATE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ public enum Shutdown {
|
||||||
/**
|
/**
|
||||||
* The {@link WebServer} should shut down immediately.
|
* The {@link WebServer} should shut down immediately.
|
||||||
*/
|
*/
|
||||||
IMMEDIATE;
|
IMMEDIATE
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
|
||||||
* Tests for {@link DelegatingApplicationContextInitializer}.
|
* Tests for {@link DelegatingApplicationContextInitializer}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
|
|
|
@ -36,6 +36,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* Tests for {@link DelegatingApplicationListener}.
|
* Tests for {@link DelegatingApplicationListener}.
|
||||||
*
|
*
|
||||||
* @author Dave Syer
|
* @author Dave Syer
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@Deprecated(since = "3.2.0", forRemoval = true)
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
|
|
|
@ -33,10 +33,11 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* client.
|
* client.
|
||||||
*
|
*
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@ClassPathOverrides("com.squareup.okhttp3:okhttp:3.14.9")
|
@ClassPathOverrides("com.squareup.okhttp3:okhttp:3.14.9")
|
||||||
@ClassPathExclusions({ "httpclient5-*.jar", "jetty-client-*.jar" })
|
@ClassPathExclusions({ "httpclient5-*.jar", "jetty-client-*.jar" })
|
||||||
@Deprecated(since = "3.2.0")
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
class ClientHttpRequestFactoriesOkHttp3Tests
|
class ClientHttpRequestFactoriesOkHttp3Tests
|
||||||
extends AbstractClientHttpRequestFactoriesTests<OkHttp3ClientHttpRequestFactory> {
|
extends AbstractClientHttpRequestFactoriesTests<OkHttp3ClientHttpRequestFactory> {
|
||||||
|
|
|
@ -32,9 +32,10 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* client.
|
* client.
|
||||||
*
|
*
|
||||||
* @author Andy Wilkinson
|
* @author Andy Wilkinson
|
||||||
|
* @deprecated since 3.2.0 for removal in 3.4.0
|
||||||
*/
|
*/
|
||||||
@ClassPathExclusions({ "httpclient5-*.jar", "jetty-client-*.jar" })
|
@ClassPathExclusions({ "httpclient5-*.jar", "jetty-client-*.jar" })
|
||||||
@Deprecated(since = "3.2.0")
|
@Deprecated(since = "3.2.0", forRemoval = true)
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
class ClientHttpRequestFactoriesOkHttp4Tests
|
class ClientHttpRequestFactoriesOkHttp4Tests
|
||||||
extends AbstractClientHttpRequestFactoriesTests<OkHttp3ClientHttpRequestFactory> {
|
extends AbstractClientHttpRequestFactoriesTests<OkHttp3ClientHttpRequestFactory> {
|
||||||
|
|
|
@ -30,6 +30,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalStateException;
|
||||||
* Tests for {@link SslConfigurationValidator}.
|
* Tests for {@link SslConfigurationValidator}.
|
||||||
*
|
*
|
||||||
* @author Chris Bono
|
* @author Chris Bono
|
||||||
|
* @deprecated since 3.1.0 for removal in 3.3.0
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("removal")
|
@SuppressWarnings("removal")
|
||||||
@Deprecated(since = "3.1.0", forRemoval = true)
|
@Deprecated(since = "3.1.0", forRemoval = true)
|
||||||
|
|
|
@ -33,7 +33,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||||
* @author Dave Syer
|
* @author Dave Syer
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
*/
|
*/
|
||||||
public class SampleAntApplicationIT {
|
class SampleAntApplicationIT {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void runJar() throws Exception {
|
void runJar() throws Exception {
|
||||||
|
|
Loading…
Reference in New Issue