Restructure autoconfigure packages

Restructure modules packages so that all auto-configuration is
organized under single top-level autoconfigure package.
This commit is contained in:
Phillip Webb
2025-06-11 16:29:17 -07:00
parent e60af6a8c7
commit 3de1e27b64
499 changed files with 1133 additions and 1464 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import java.util.Collection;
import java.util.function.Function;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.springframework.boot.context.properties.ConfigurationProperties;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.apache.catalina.startup.Tomcat;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.apache.catalina.startup.Tomcat;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.apache.catalina.startup.Tomcat;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.actuate.autoconfigure.web.ManagementContextFactory;

View File

@@ -15,6 +15,6 @@
*/
/**
* Auto-configuration for Tomcat actuator metrics.
* Auto-configuration for Tomcat actuator web concerns.
*/
package org.springframework.boot.tomcat.metrics.autoconfigure;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.metrics.autoconfigure;
package org.springframework.boot.tomcat.autoconfigure.metrics;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.binder.tomcat.TomcatMetrics;

View File

@@ -15,6 +15,6 @@
*/
/**
* Actuator Tomcat web server support.
* Auto-configuration for Tomcat metrics.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.metrics;

View File

@@ -1,2 +1,2 @@
org.springframework.boot.tomcat.actuate.autoconfigure.web.TomcatReactiveManagementChildContextConfiguration
org.springframework.boot.tomcat.actuate.autoconfigure.web.TomcatServletManagementChildContextConfiguration
org.springframework.boot.tomcat.autoconfigure.actuate.web.TomcatReactiveManagementChildContextConfiguration
org.springframework.boot.tomcat.autoconfigure.actuate.web.TomcatServletManagementChildContextConfiguration

View File

@@ -1,5 +1,5 @@
org.springframework.boot.tomcat.actuate.autoconfigure.web.TomcatReactiveManagementContextAutoConfiguration
org.springframework.boot.tomcat.actuate.autoconfigure.web.TomcatServletManagementContextAutoConfiguration
org.springframework.boot.tomcat.autoconfigure.actuate.web.TomcatReactiveManagementContextAutoConfiguration
org.springframework.boot.tomcat.autoconfigure.actuate.web.TomcatServletManagementContextAutoConfiguration
org.springframework.boot.tomcat.autoconfigure.metrics.TomcatMetricsAutoConfiguration
org.springframework.boot.tomcat.autoconfigure.reactive.TomcatReactiveWebServerAutoConfiguration
org.springframework.boot.tomcat.autoconfigure.servlet.TomcatServletWebServerAutoConfiguration
org.springframework.boot.tomcat.metrics.autoconfigure.TomcatMetricsAutoConfiguration

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.actuate.autoconfigure.web;
package org.springframework.boot.tomcat.autoconfigure.actuate.web;
import org.junit.jupiter.api.Test;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.tomcat.metrics.autoconfigure;
package org.springframework.boot.tomcat.autoconfigure.metrics;
import java.util.Collections;
import java.util.concurrent.atomic.AtomicInteger;