Restructure autoconfigure packages
Restructure modules packages so that all auto-configuration is organized under single top-level autoconfigure package.
This commit is contained in:
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user