@@ -1587,7 +1587,7 @@ it's loaded too early. You need to either use `logback-spring.xml` or define a
1587
1587
`logging.config` property.
1588
1588
1589
1589
WARNING: The extensions cannot be used with Logback's
1590
- http ://logback.qos.ch/manual/configuration.html#autoScan[configuration scanning]. If you
1590
+ https ://logback.qos.ch/manual/configuration.html#autoScan[configuration scanning]. If you
1591
1591
attempt to do so, making changes to the configuration file will result in an error similar
1592
1592
to once of the following being logged:
1593
1593
@@ -1766,7 +1766,7 @@ of converters. You can also override default converters that way.
1766
1766
==== Custom JSON Serializers and Deserializers
1767
1767
If you're using Jackson to serialize and deserialize JSON data, you might want to write
1768
1768
your own `JsonSerializer` and `JsonDeserializer` classes. Custom serializers are usually
1769
- http ://wiki.fasterxml.com/JacksonHowToCustomDeserializers[registered with Jackson via a Module],
1769
+ https ://wiki.fasterxml.com/JacksonHowToCustomDeserializers[registered with Jackson via a Module],
1770
1770
but Spring Boot provides an alternative `@JsonComponent` annotation which makes it easier
1771
1771
to directly register Spring Beans.
1772
1772
@@ -3449,7 +3449,7 @@ Mongo instance's configuration and logging routing.
3449
3449
3450
3450
[[boot-features-neo4j]]
3451
3451
=== Neo4j
3452
- http ://neo4j.com/[Neo4j] is an open-source NoSQL graph database that uses a rich data
3452
+ https ://neo4j.com/[Neo4j] is an open-source NoSQL graph database that uses a rich data
3453
3453
model of nodes related by first class relationships which is better suited for connected
3454
3454
big data than traditional rdbms approaches. Spring Boot offers several conveniences for
3455
3455
working with Neo4j, including the `spring-boot-starter-data-neo4j` '`Starter`'.
@@ -3560,7 +3560,7 @@ following two annotations to your Spring configuration:
3560
3560
----
3561
3561
3562
3562
TIP: For complete details of Spring Data Neo4j, including its rich object mapping
3563
- technologies, refer to their http ://projects.spring.io/spring-data-neo4j/[reference
3563
+ technologies, refer to their https ://projects.spring.io/spring-data-neo4j/[reference
3564
3564
documentation].
3565
3565
3566
3566
@@ -3648,7 +3648,7 @@ configured:
3648
3648
3649
3649
[source,properties,indent=0]
3650
3650
----
3651
- spring.elasticsearch.jest.uris=http ://search.example.com:9200
3651
+ spring.elasticsearch.jest.uris=https ://search.example.com:9200
3652
3652
spring.elasticsearch.jest.read-timeout=10000
3653
3653
spring.elasticsearch.jest.username=user
3654
3654
spring.elasticsearch.jest.password=secret
@@ -3775,7 +3775,7 @@ https://docs.spring.io/spring-data/cassandra/docs/[reference documentation].
3775
3775
3776
3776
[[boot-features-couchbase]]
3777
3777
=== Couchbase
3778
- http ://www.couchbase.com/[Couchbase] is an open-source, distributed multi-model NoSQL
3778
+ https ://www.couchbase.com/[Couchbase] is an open-source, distributed multi-model NoSQL
3779
3779
document-oriented database that is optimized for interactive applications. Spring Boot
3780
3780
offers auto-configuration for Couchbase and abstractions on top of it provided by
3781
3781
https://github.com/spring-projects/spring-data-couchbase[Spring Data Couchbase].
@@ -3824,7 +3824,7 @@ Check the `spring.couchbase.env.*` properties for more details.
3824
3824
==== Spring Data Couchbase repositories
3825
3825
Spring Data includes repository support for Couchbase. For complete details of Spring
3826
3826
Data Couchbase, refer to their
3827
- http ://docs.spring.io/spring-data/couchbase/docs/current/reference/html/[reference documentation].
3827
+ https ://docs.spring.io/spring-data/couchbase/docs/current/reference/html/[reference documentation].
3828
3828
3829
3829
You can inject an auto-configured `CouchbaseTemplate` instance as you would with any
3830
3830
other Spring Bean as long as a _default_ `CouchbaseConfigurer` is available (that
@@ -5023,13 +5023,13 @@ If you use the
5023
5023
`spring-boot-starter-test` '`Starter`' (in the `test` `scope`), you will find
5024
5024
the following provided libraries:
5025
5025
5026
- * http ://junit.org[JUnit] -- The de-facto standard for unit testing Java applications.
5026
+ * https ://junit.org[JUnit] -- The de-facto standard for unit testing Java applications.
5027
5027
* {spring-reference}/#integration-testing[Spring Test] & Spring Boot Test --
5028
5028
Utilities and integration test support for Spring Boot applications.
5029
- * http ://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library.
5029
+ * https ://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library.
5030
5030
* http://hamcrest.org/JavaHamcrest/[Hamcrest] -- A library of matcher objects (also known
5031
5031
as constraints or predicates).
5032
- * http ://mockito.org/ [Mockito] -- A Java mocking framework.
5032
+ * https ://mockito.github.io [Mockito] -- A Java mocking framework.
5033
5033
* https://github.com/skyscreamer/JSONassert[JSONassert] -- An assertion library for JSON.
5034
5034
* https://github.com/jayway/JsonPath[JsonPath] -- XPath for JSON.
5035
5035
@@ -5763,7 +5763,7 @@ public class MyTest {
5763
5763
5764
5764
@Test
5765
5765
public void testRequest() throws Exception {
5766
- HttpHeaders headers = template.getForEntity("http ://myhost.com", String.class).getHeaders();
5766
+ HttpHeaders headers = template.getForEntity("https ://myhost.com", String.class).getHeaders();
5767
5767
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
5768
5768
}
5769
5769
0 commit comments