Skip to content

Commit 7dd12a8

Browse files
Spring Operatorgregturn
Spring Operator
authored andcommitted
URL Cleanup (#21)
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://creativecommons.org/licenses/by-nd/3.0/ with 1 occurrences migrated to: https://creativecommons.org/licenses/by-nd/3.0/ ([https](https://creativecommons.org/licenses/by-nd/3.0/) result 200). * [ ] http://en.wikipedia.org/wiki/SQL_injection with 1 occurrences migrated to: https://en.wikipedia.org/wiki/SQL_injection ([https](https://en.wikipedia.org/wiki/SQL_injection) result 200). * [ ] http://docs.spring.io/spring-boot/docs/2.1.3.RELEASE/reference/htmlsingle/ with 1 occurrences migrated to: https://docs.spring.io/spring-boot/docs/2.1.3.RELEASE/reference/htmlsingle/ ([https](https://docs.spring.io/spring-boot/docs/2.1.3.RELEASE/reference/htmlsingle/) result 301).
1 parent 5dbb46c commit 7dd12a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LICENSE.writing.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Except where otherwise noted, this work is licensed under http://creativecommons.org/licenses/by-nd/3.0/
1+
Except where otherwise noted, this work is licensed under https://creativecommons.org/licenses/by-nd/3.0/

README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Then you install some records in your newly created table using `JdbcTemplate`'s
6464

6565
NOTE: For single insert statements, `JdbcTemplate`'s `insert` method is good. But for multiple inserts, it's better to use `batchUpdate`.
6666

67-
NOTE: Use `?` for arguments to avoid http://en.wikipedia.org/wiki/SQL_injection[SQL injection attacks] by instructing JDBC to bind variables.
67+
NOTE: Use `?` for arguments to avoid https://en.wikipedia.org/wiki/SQL_injection[SQL injection attacks] by instructing JDBC to bind variables.
6868

6969
Finally you use the `query` method to search your table for records matching the criteria. You again use the "`?`" arguments to create parameters for the query, passing in the actual values when you make the call. The last argument is a Java 8 lambda used to convert each result row into a new `Customer` object.
7070

@@ -91,7 +91,7 @@ You should see the following output:
9191
== Summary
9292
Congratulations! You've just used Spring to develop a simple JDBC client.
9393

94-
NOTE: Spring Boot has many features for configuring and customizing the connection pool, for instance to connect to an external database instead of an in-memory one. Please refer to the http://docs.spring.io/spring-boot/docs/2.1.3.RELEASE/reference/htmlsingle/#boot-features-configure-datasource[User Guide] for more detail.
94+
NOTE: Spring Boot has many features for configuring and customizing the connection pool, for instance to connect to an external database instead of an in-memory one. Please refer to the https://docs.spring.io/spring-boot/docs/2.1.3.RELEASE/reference/htmlsingle/#boot-features-configure-datasource[User Guide] for more detail.
9595

9696
== See Also
9797

0 commit comments

Comments
 (0)