Fix duplicate slashes in URL links

See gh-21108
This commit is contained in:
Katada, Junya
2020-05-05 07:46:04 +09:00
committed by Stephane Nicoll
parent f6d8c7d23c
commit bc2a83062b
5 changed files with 44 additions and 44 deletions

View File

@@ -30,7 +30,7 @@ Our primary goals are:
[[getting-started-system-requirements]]
== System Requirements
Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to Java 14 (included).
{spring-framework-docs}[Spring Framework {spring-framework-version}] or above is also required.
{spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required.
Explicit build support is provided for the following build tools:
@@ -522,7 +522,7 @@ It tells Spring that any HTTP request with the `/` path should be mapped to the
The `@RestController` annotation tells Spring to render the resulting string directly back to the caller.
TIP: The `@RestController` and `@RequestMapping` annotations are Spring MVC annotations (they are not specific to Spring Boot).
See the {spring-framework-docs}web.html#mvc[MVC section] in the Spring Reference Documentation for more details.
See the {spring-framework-docs}/web.html#mvc[MVC section] in the Spring Reference Documentation for more details.