Skip to content

Commit 81bc586

Browse files
committed
Merge branch '6.1.x'
2 parents 6f95af9 + 9b1d5ea commit 81bc586

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Diff for: framework-docs/modules/ROOT/pages/web/webflux/controller/ann-methods/jackson.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Kotlin::
8181
----
8282
======
8383

84-
NOTE: `@JsonView` allows an array of view classes but you can only specify only one per
84+
NOTE: `@JsonView` allows an array of view classes but you can specify only one per
8585
controller method. Use a composite interface if you need to activate multiple views.
8686

8787

Diff for: framework-docs/modules/ROOT/pages/web/webmvc-view/mvc-jackson.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ to render the response content as XML. If the model contains multiple entries, y
3636
explicitly set the object to be serialized by using the `modelKey` bean property. If the
3737
model contains a single entry, it is serialized automatically.
3838

39-
You can customized XML mapping as needed by using JAXB or Jackson's provided
39+
You can customize XML mapping as needed by using JAXB or Jackson's provided
4040
annotations. When you need further control, you can inject a custom `XmlMapper`
4141
through the `ObjectMapper` property, for cases where custom XML
4242
you need to provide serializers and deserializers for specific types.

Diff for: framework-docs/modules/ROOT/pages/web/webmvc-view/mvc-jsp.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ the HTML would be as follows:
683683
----
684684

685685
What if we want to display the entire list of errors for a given page? The next example
686-
shows that the `errors` tag also supports some basic wildcarding functionality.
686+
shows that the `errors` tag also supports some basic wildcard functionality.
687687

688688
* `path="{asterisk}"`: Displays all errors.
689689
* `path="lastName"`: Displays all errors associated with the `lastName` field.

Diff for: framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,8 @@ The MVC configuration exposes the following options for asynchronous request pro
507507

508508
You can configure the following:
509509

510-
* Default timeout value for async requests, which if not set, depends
511-
on the underlying Servlet container.
510+
* The default timeout value for async requests depends
511+
on the underlying Servlet container, unless it is set explicitly.
512512
* `AsyncTaskExecutor` to use for blocking writes when streaming with
513513
xref:web/webmvc/mvc-ann-async.adoc#mvc-ann-async-reactive-types[Reactive Types] and for
514514
executing `Callable` instances returned from controller methods.

Diff for: framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-rest-exceptions.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Message codes and arguments for each error are also resolved via `MessageSource`
142142
| `MethodArgumentNotValidException`
143143
| (default)
144144
| `+{0}+` the list of global errors, `+{1}+` the list of field errors.
145-
Message codes and arguments for each error are also resolvedvia `MessageSource`.
145+
Message codes and arguments for each error are also resolved via `MessageSource`.
146146

147147
| `MissingRequestHeaderException`
148148
| (default)

Diff for: framework-docs/modules/ROOT/pages/web/webmvc/mvc-config/enable.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ You can use the `@EnableWebMvc` annotation to enable MVC configuration with prog
77

88
include-code::./WebConfiguration[tag=snippet,indent=0]
99

10-
NOTE: When using Spring Boot, you may want to use `@Configuration` class of type `WebMvcConfigurer` but without `@EnableWebMvc` to keep Spring Boot MVC customizations. See more details in the xref:web/webmvc/mvc-config/customize.adoc[the MVC Config API section] and in {spring-boot-docs}/web.html#web.servlet.spring-mvc.auto-configuration[the dedicated Spring Boot documentation].
10+
NOTE: When using Spring Boot, you may want to use `@Configuration` class of type `WebMvcConfigurer` but without `@EnableWebMvc` to keep Spring Boot MVC customizations. See more details in xref:web/webmvc/mvc-config/customize.adoc[the MVC Config API section] and in {spring-boot-docs}/web.html#web.servlet.spring-mvc.auto-configuration[the dedicated Spring Boot documentation].
1111

1212
The preceding example registers a number of Spring MVC
1313
xref:web/webmvc/mvc-servlet/special-bean-types.adoc[infrastructure beans] and adapts to dependencies

0 commit comments

Comments
 (0)