Fix reference to assets on the default branch in ref doc
See gh-26863
This commit is contained in:
@@ -380,8 +380,8 @@ The following example shows how compile a template:
|
||||
----
|
||||
|
||||
Check out the Spring Framework unit tests,
|
||||
https://github.com/spring-projects/spring-framework/tree/master/spring-webflux/src/test/java/org/springframework/web/reactive/result/view/script[Java], and
|
||||
https://github.com/spring-projects/spring-framework/tree/master/spring-webflux/src/test/resources/org/springframework/web/reactive/result/view/script[resources],
|
||||
{spring-framework-main-code}/spring-webflux/src/test/java/org/springframework/web/reactive/result/view/script[Java], and
|
||||
{spring-framework-main-code}/spring-webflux/src/test/resources/org/springframework/web/reactive/result/view/script[resources],
|
||||
for more configuration examples.
|
||||
|
||||
|
||||
|
||||
@@ -1130,7 +1130,7 @@ controller method .
|
||||
To test code that uses the `WebClient`, you can use a mock web server, such as the
|
||||
https://github.com/square/okhttp#mockwebserver[OkHttp MockWebServer]. To see an example
|
||||
of its use, check out
|
||||
https://github.com/spring-projects/spring-framework/blob/master/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java[`WebClientIntegrationTests`]
|
||||
{spring-framework-main-code}/spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java[`WebClientIntegrationTests`]
|
||||
in the Spring Framework test suite or the
|
||||
https://github.com/square/okhttp/tree/master/samples/static-server[`static-server`]
|
||||
sample in the OkHttp repository.
|
||||
|
||||
@@ -9,11 +9,10 @@ https://www.reactive-streams.org/[Reactive Streams] back pressure, and runs on s
|
||||
Netty, Undertow, and Servlet 3.1+ containers.
|
||||
|
||||
Both web frameworks mirror the names of their source modules
|
||||
(https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc[spring-webmvc] and
|
||||
https://github.com/spring-projects/spring-framework/tree/master/spring-webflux[spring-webflux])
|
||||
and co-exist side by side in the Spring Framework. Each module is optional.
|
||||
Applications can use one or the other module or, in some cases, both --
|
||||
for example, Spring MVC controllers with the reactive `WebClient`.
|
||||
({spring-framework-main-code}/spring-webmvc[spring-webmvc] and
|
||||
{spring-framework-main-code}/spring-webflux[spring-webflux]) and co-exist side by side in the
|
||||
Spring Framework. Each module is optional. Applications can use one or the other module or,
|
||||
in some cases, both -- for example, Spring MVC controllers with the reactive `WebClient`.
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -822,8 +822,8 @@ template engine configuration, for example). The following example shows how to
|
||||
----
|
||||
|
||||
Check out the Spring Framework unit tests,
|
||||
https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc/src/test/java/org/springframework/web/servlet/view/script[Java], and
|
||||
https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc/src/test/resources/org/springframework/web/servlet/view/script[resources],
|
||||
{spring-framework-main-code}/spring-webmvc/src/test/java/org/springframework/web/servlet/view/script[Java], and
|
||||
{spring-framework-main-code}/spring-webmvc/src/test/resources/org/springframework/web/servlet/view/script[resources],
|
||||
for more configuration examples.
|
||||
|
||||
|
||||
|
||||
@@ -5,12 +5,12 @@
|
||||
Spring Web MVC is the original web framework built on the Servlet API and has been included
|
||||
in the Spring Framework from the very beginning. The formal name, "`Spring Web MVC,`"
|
||||
comes from the name of its source module
|
||||
(https://github.com/spring-projects/spring-framework/tree/master/spring-webmvc[`spring-webmvc`]),
|
||||
({spring-framework-main-code}/spring-webmvc[`spring-webmvc`]),
|
||||
but it is more commonly known as "`Spring MVC`".
|
||||
|
||||
Parallel to Spring Web MVC, Spring Framework 5.0 introduced a reactive-stack web framework
|
||||
whose name, "`Spring WebFlux,`" is also based on its source module
|
||||
(https://github.com/spring-projects/spring-framework/tree/master/spring-webflux[`spring-webflux`]).
|
||||
({spring-framework-main-code}/spring-webflux[`spring-webflux`]).
|
||||
This section covers Spring Web MVC. The <<web-reactive.adoc#spring-web-reactive, next section>>
|
||||
covers Spring WebFlux.
|
||||
|
||||
@@ -301,7 +301,7 @@ Applications can declare the infrastructure beans listed in <<mvc-servlet-specia
|
||||
that are required to process requests. The `DispatcherServlet` checks the
|
||||
`WebApplicationContext` for each special bean. If there are no matching bean types,
|
||||
it falls back on the default types listed in
|
||||
https://github.com/spring-projects/spring-framework/blob/master/spring-webmvc/src/main/resources/org/springframework/web/servlet/DispatcherServlet.properties[`DispatcherServlet.properties`].
|
||||
{spring-framework-main-code}/spring-webmvc/src/main/resources/org/springframework/web/servlet/DispatcherServlet.properties[`DispatcherServlet.properties`].
|
||||
|
||||
In most cases, the <<mvc-config>> is the best starting point. It declares the required
|
||||
beans in either Java or XML and provides a higher-level configuration callback API to
|
||||
|
||||
Reference in New Issue
Block a user