Align docs package structure with heading IDs

See gh-6313
This commit is contained in:
Phillip Webb
2021-04-29 16:53:40 -07:00
parent 2c770217bb
commit 09e85806d6
297 changed files with 401 additions and 1594 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.testing;
package org.springframework.boot.docs.features.developingautoconfiguration.testing;
/**
* Tests for {@link UserServiceAutoConfigurationTests}.

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.externalizedconfiguration.duration.javabeanbinding;
package org.springframework.boot.docs.features.externalconfig.typesafeconfigurationproperties.conversion.durations.constructorbinding;
import java.util.function.Consumer;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.externalizedconfiguration.duration.constructorbinding;
package org.springframework.boot.docs.features.externalconfig.typesafeconfigurationproperties.conversion.durations.javabeanbinding;
import java.util.function.Consumer;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.springapplication;
package org.springframework.boot.docs.features.springapplication.fluentbuilderapi;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.testing.jmx;
package org.springframework.boot.docs.features.testing.springbootapplications.jmx;
/**
* Tests for SampleJmxTests

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.testing;
package org.springframework.boot.docs.features.testing.utilities.outputcapture;
/**
* Tests for {@link OutputCaptureTests}.

View File

@@ -14,13 +14,13 @@
* limitations under the License.
*/
package org.springframework.boot.docs.springbootfeatures.testing.webclient;
package org.springframework.boot.docs.features.testing.utilities.testresttemplate;
/**
* Tests for {@link SampleWebClientTests}.
* Tests for {@link MySpringBootTests}.
*
* @author Stephane Nicoll
*/
class SampleWebClientTestsTests extends SampleWebClientTests {
class MySpringBootTestsTests extends MySpringBootTests {
}

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.actuator;
package org.springframework.boot.docs.howto.actuator.maphealthindicatorstometrics;
import io.micrometer.core.instrument.Gauge;
import io.micrometer.core.instrument.MeterRegistry;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.dataaccess;
package org.springframework.boot.docs.howto.dataaccess.configurecustomdatasource;
import java.sql.SQLException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.dataaccess;
package org.springframework.boot.docs.howto.dataaccess.configurecustomdatasource;
import java.sql.SQLException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.dataaccess;
package org.springframework.boot.docs.howto.dataaccess.configurecustomdatasource;
import java.sql.SQLException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.dataaccess;
package org.springframework.boot.docs.howto.dataaccess.configuretwodatasources;
import java.sql.SQLException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.dataaccess;
package org.springframework.boot.docs.howto.dataaccess.configuretwodatasources;
import java.sql.SQLException;

View File

@@ -19,6 +19,7 @@ package org.springframework.boot.docs.howto.springbootapplication;
import org.junit.jupiter.api.Test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.docs.howto.application.customizetheenvironmentorapplicationcontext.MyEnvironmentPostProcessor;
import org.springframework.core.env.StandardEnvironment;
import static org.assertj.core.api.Assertions.assertThat;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.howto.embeddedwebservers;
package org.springframework.boot.docs.howto.webserver.usetomcatlegacycookieprocessor;
import org.apache.catalina.Context;
import org.apache.tomcat.util.http.LegacyCookieProcessor;