Skip to content

Commit 71bbc98

Browse files
committed
URL Cleanup
Issue gh-2567
1 parent 35797f9 commit 71bbc98

File tree

4 files changed

+38
-38
lines changed

4 files changed

+38
-38
lines changed

docs/manual/src/docs/asciidoc/_includes/about/getting-spring-security.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The topics in this section provide detail on how to consume Spring Security when
2424
=== Spring Boot with Maven
2525

2626
Spring Boot provides a `spring-boot-starter-security` starter that aggregates Spring Security-related dependencies together.
27-
The simplest and preferred way to use the starter is to use https://docs.spring.io/initializr/docs/current/reference/htmlsingle/[Spring Initializr] by using an IDE integration (http://joshlong.com/jl/blogPost/tech_tip_geting_started_with_spring_boot.html[Eclipse], https://www.jetbrains.com/help/idea/spring-boot.html#d1489567e2[IntelliJ], https://github.com/AlexFalappa/nb-springboot/wiki/Quick-Tour[NetBeans]) or through https://start.spring.io.
27+
The simplest and preferred way to use the starter is to use https://docs.spring.io/initializr/docs/current/reference/htmlsingle/[Spring Initializr] by using an IDE integration (https://joshlong.com/jl/blogPost/tech_tip_geting_started_with_spring_boot.html[Eclipse], https://www.jetbrains.com/help/idea/spring-boot.html#d1489567e2[IntelliJ], https://github.com/AlexFalappa/nb-springboot/wiki/Quick-Tour[NetBeans]) or through https://start.spring.io.
2828

2929
Alternatively, you can manually add the starter, as the following example shows:
3030

@@ -151,7 +151,7 @@ The easiest way to resolve this is to use the `spring-framework-bom` within the
151151
The preceding example ensures that all the transitive dependencies of Spring Security use the Spring {spring-version} modules.
152152

153153
NOTE: This approach uses Maven's "`bill of materials`" (BOM) concept and is only available in Maven 2.0.9+.
154-
For additional details about how dependencies are resolved, see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html[Maven's Introduction to the Dependency Mechanism documentation].
154+
For additional details about how dependencies are resolved, see https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html[Maven's Introduction to the Dependency Mechanism documentation].
155155

156156
[[maven-repositories]]
157157
=== Maven Repositories
@@ -201,7 +201,7 @@ The following topics provide detail on how to consume Spring Security when using
201201
=== Spring Boot with Gradle
202202

203203
Spring Boot provides a `spring-boot-starter-security` starter that aggregates Spring Security related dependencies together.
204-
The simplest and preferred method to use the starter is to use https://docs.spring.io/initializr/docs/current/reference/htmlsingle/[Spring Initializr] by using an IDE integration (http://joshlong.com/jl/blogPost/tech_tip_geting_started_with_spring_boot.html[Eclipse], https://www.jetbrains.com/help/idea/spring-boot.html#d1489567e2[IntelliJ], https://github.com/AlexFalappa/nb-springboot/wiki/Quick-Tour[NetBeans]) or through https://start.spring.io.
204+
The simplest and preferred method to use the starter is to use https://docs.spring.io/initializr/docs/current/reference/htmlsingle/[Spring Initializr] by using an IDE integration (https://joshlong.com/jl/blogPost/tech_tip_geting_started_with_spring_boot.html[Eclipse], https://www.jetbrains.com/help/idea/spring-boot.html#d1489567e2[IntelliJ], https://github.com/AlexFalappa/nb-springboot/wiki/Quick-Tour[NetBeans]) or through https://start.spring.io.
205205

206206
Alternatively, you can manually add the starter, as the following example shows:
207207

docs/manual/src/docs/asciidoc/_includes/servlet/hello/boot.adoc

+11-11
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ A summary of the features follows:
5151
* Let the user with a username of `user` and a password that is logged to the console to authenticate with form-based authentication (in the preceding example, the password is `8e557245-73e2-4286-969a-ff57fe326336`)
5252
* Protects the password storage with BCrypt
5353
* Lets the user log out
54-
* http://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
55-
* http://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
54+
* https://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
55+
* https://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
5656
* Security Header integration
57-
** http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
58-
** http://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
57+
** https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
58+
** https://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
5959
** Cache Control (can be overridden later by your application to allow caching of your static resources)
60-
** http://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
61-
** X-Frame-Options integration to help prevent http://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
60+
** https://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
61+
** X-Frame-Options integration to help prevent https://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
6262
* Integrate with the following Servlet API methods:
63-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
64-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
65-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
66-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
67-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]
63+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
64+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
65+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
66+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
67+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]

docs/manual/src/docs/asciidoc/_includes/servlet/hello/java-configuration.adoc

+11-11
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ A summary of the features follows:
5454
* Lets the user with a username of `user` and a password of `password` authenticate with form-based authentication
5555
* Protects the password storage with BCrypt
5656
* Lets the user log out
57-
* http://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
58-
* http://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
57+
* https://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
58+
* https://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
5959
* Security Header integration
60-
** http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
61-
** http://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
60+
** https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
61+
** https://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
6262
** Cache Control (can be overridden later by your application to allow caching of your static resources)
63-
** http://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
64-
** X-Frame-Options integration to help prevent http://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
63+
** https://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
64+
** X-Frame-Options integration to help prevent https://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
6565
* Integrate with the following Servlet API methods:
66-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
67-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
68-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
69-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
70-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]
66+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
67+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
68+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
69+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
70+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]
7171

7272
// FIXME: After completed rewriting, link to all the sections of doc that this relates to
7373

docs/manual/src/docs/asciidoc/_includes/servlet/hello/xml-configuration.adoc

+13-13
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ The following example shows the most basic example of a Spring Security XML Conf
2929
<b:beans xmlns="http://www.springframework.org/schema/security"
3030
xmlns:b="http://www.springframework.org/schema/beans"
3131
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
32-
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
33-
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
32+
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
33+
http://www.springframework.org/schema/security https://www.springframework.org/schema/security/spring-security.xsd">
3434
<http />
3535
3636
<user-service>
@@ -50,20 +50,20 @@ A summary of the features follows:
5050
* Lets the user with a username of `user` and a password of `password` authenticate with form-based authentication
5151
* Protects the password storage with BCrypt
5252
* Lets the user to log out
53-
* http://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
54-
* http://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
53+
* https://en.wikipedia.org/wiki/Cross-site_request_forgery[CSRF attack] prevention
54+
* https://en.wikipedia.org/wiki/Session_fixation[Session Fixation] protection
5555
* Security Header integration
56-
** http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
57-
** http://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
56+
** https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security[HTTP Strict Transport Security] for secure requests
57+
** https://msdn.microsoft.com/en-us/library/ie/gg622941(v=vs.85).aspx[X-Content-Type-Options] integration
5858
** Cache Control (can be overridden later by your application to allow caching of your static resources)
59-
** http://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
60-
** X-Frame-Options integration to help prevent http://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
59+
** https://msdn.microsoft.com/en-us/library/dd565647(v=vs.85).aspx[X-XSS-Protection] integration
60+
** X-Frame-Options integration to help prevent https://en.wikipedia.org/wiki/Clickjacking[Clickjacking]
6161
* Integrate with the following Servlet API methods:
62-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
63-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
64-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
65-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
66-
** http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]
62+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRemoteUser()[`HttpServletRequest#getRemoteUser()`]
63+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getUserPrincipal()[`HttpServletRequest.html#getUserPrincipal()`]
64+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#isUserInRole(java.lang.String)[`HttpServletRequest.html#isUserInRole(java.lang.String)`]
65+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#login(java.lang.String,%20java.lang.String)[`HttpServletRequest.html#login(java.lang.String, java.lang.String)`]
66+
** https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#logout()[`HttpServletRequest.html#logout()`]
6767

6868
// FIXME: After completed rewriting, link to all the sections of doc that this relates to
6969

0 commit comments

Comments
 (0)