Polish package name for web sample code

See gh-27132
This commit is contained in:
Phillip Webb
2021-10-20 21:31:41 -07:00
parent ea65c28bfa
commit 3729c4909a
39 changed files with 59 additions and 59 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc;
package org.springframework.boot.docs.web.reactive.webflux;
class Customer {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.reactive.webflux;
import reactor.core.publisher.Flux;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.reactive.webflux;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.reactive.webflux;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.reactive.webflux;
import reactor.core.publisher.Mono;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc;
package org.springframework.boot.docs.web.reactive.webflux;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.reactive.webflux;
import org.springframework.data.repository.reactive.ReactiveCrudRepository;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux.errorhandling;
package org.springframework.boot.docs.web.reactive.webflux.errorhandling;
import reactor.core.publisher.Mono;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux.errorhandling;
package org.springframework.boot.docs.web.reactive.webflux.errorhandling;
import org.springframework.boot.web.reactive.error.ErrorAttributes;
import org.springframework.stereotype.Controller;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux.httpcodecs;
package org.springframework.boot.docs.web.reactive.webflux.httpcodecs;
import org.springframework.boot.web.codec.CodecCustomizer;
import org.springframework.context.annotation.Bean;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.embeddedcontainer.customizing.programmatic;
package org.springframework.boot.docs.web.servlet.embeddedcontainer.customizing.programmatic;
import java.time.Duration;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.embeddedcontainer.customizing.programmatic;
package org.springframework.boot.docs.web.servlet.embeddedcontainer.customizing.programmatic;
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.jersey;
package org.springframework.boot.docs.web.servlet.jersey;
import javax.ws.rs.GET;
import javax.ws.rs.Path;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.jersey;
package org.springframework.boot.docs.web.servlet.jersey;
import org.glassfish.jersey.server.ResourceConfig;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.servlet.springmvc;
class Customer {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc;
package org.springframework.boot.docs.web.servlet.springmvc;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc;
package org.springframework.boot.docs.web.servlet.springmvc;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springwebflux;
package org.springframework.boot.docs.web.servlet.springmvc;
import java.util.List;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc;
package org.springframework.boot.docs.web.servlet.springmvc;
import org.springframework.data.repository.CrudRepository;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.cors;
package org.springframework.boot.docs.web.servlet.springmvc.cors;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
class CustomException extends RuntimeException {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
import javax.servlet.http.HttpServletRequest;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
import javax.servlet.RequestDispatcher;
import javax.servlet.http.HttpServletRequest;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
class MyErrorBody {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
class MyException extends RuntimeException {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling;
class SomeController {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling.errorpages;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling.errorpages;
import java.util.Map;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling.errorpageswithoutspringmvc;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling.errorpageswithoutspringmvc;
import org.springframework.boot.web.server.ErrorPage;
import org.springframework.boot.web.server.ErrorPageRegistrar;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling.errorpageswithoutspringmvc;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling.errorpageswithoutspringmvc;
import java.io.IOException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.errorhandling.errorpageswithoutspringmvc;
package org.springframework.boot.docs.web.servlet.springmvc.errorhandling.errorpageswithoutspringmvc;
import java.util.EnumSet;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.json;
package org.springframework.boot.docs.web.servlet.springmvc.json;
import java.io.IOException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.json;
package org.springframework.boot.docs.web.servlet.springmvc.json;
class MyObject {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.json.object;
package org.springframework.boot.docs.web.servlet.springmvc.json.object;
import java.io.IOException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.json.object;
package org.springframework.boot.docs.web.servlet.springmvc.json.object;
class MyObject {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.messageconverters;
package org.springframework.boot.docs.web.servlet.springmvc.messageconverters;
import java.io.IOException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.messageconverters;
package org.springframework.boot.docs.web.servlet.springmvc.messageconverters;
class AnotherHttpMessageConverter extends AdditionalHttpMessageConverter {

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.docs.features.developingwebapplications.springmvc.messageconverters;
package org.springframework.boot.docs.web.servlet.springmvc.messageconverters;
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import org.springframework.context.annotation.Bean;