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.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;
import java.io.File;

View File

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

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;
import org.eclipse.jetty.server.Server;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;
import org.eclipse.jetty.server.Server;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;
import org.eclipse.jetty.server.Server;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;
import org.eclipse.jetty.server.Server;

View File

@@ -15,6 +15,6 @@
*/
/**
* Auto-configuration for a Jetty-based management server.
* Auto-configuration for Jetty actuator web concerns.
*/
package org.springframework.boot.jetty.actuate.autoconfigure.web.server;
package org.springframework.boot.jetty.autoconfigure.actuate.web;

View File

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

View File

@@ -15,6 +15,6 @@
*/
/**
* Auto-configuration for Jetty actuator metrics.
* Auto-configuration for Jetty metrics.
*/
package org.springframework.boot.jetty.metrics.autoconfigure;
package org.springframework.boot.jetty.autoconfigure.metrics;

View File

@@ -15,7 +15,6 @@
*/
/**
* Classes related to the auto-configuration of a servlet or reactive web server using
* Jetty.
* Auto-configuration for Jetty.
*/
package org.springframework.boot.jetty.autoconfigure;

View File

@@ -1,2 +1,2 @@
org.springframework.boot.jetty.actuate.autoconfigure.web.server.JettyReactiveManagementChildContextConfiguration
org.springframework.boot.jetty.actuate.autoconfigure.web.server.JettyServletManagementChildContextConfiguration
org.springframework.boot.jetty.autoconfigure.actuate.web.JettyReactiveManagementChildContextConfiguration
org.springframework.boot.jetty.autoconfigure.actuate.web.JettyServletManagementChildContextConfiguration

View File

@@ -1,5 +1,5 @@
org.springframework.boot.jetty.actuate.autoconfigure.web.server.JettyReactiveManagementContextAutoConfiguration
org.springframework.boot.jetty.actuate.autoconfigure.web.server.JettyServletManagementContextAutoConfiguration
org.springframework.boot.jetty.autoconfigure.actuate.web.JettyReactiveManagementContextAutoConfiguration
org.springframework.boot.jetty.autoconfigure.actuate.web.JettyServletManagementContextAutoConfiguration
org.springframework.boot.jetty.autoconfigure.metrics.JettyMetricsAutoConfiguration
org.springframework.boot.jetty.autoconfigure.reactive.JettyReactiveWebServerAutoConfiguration
org.springframework.boot.jetty.autoconfigure.servlet.JettyServletWebServerAutoConfiguration
org.springframework.boot.jetty.metrics.autoconfigure.JettyMetricsAutoConfiguration

View File

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

View File

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