Skip to content

Commit 30f57ba

Browse files
author
Phillip Webb
committed
Fix broken links in reference docs
1 parent f0c0f00 commit 30f57ba

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ content into your application; rather pick only the properties that you need.
8383
spring.thymeleaf.content-type=text/html # ;charset=<encoding> is added
8484
spring.thymeleaf.cache=true # set to false for hot refresh
8585
86-
# FREEMARKER ({sc-spring-boot-autoconfigure}}/freemarker/FreeMarkerAutoConfiguration.{sc-ext}[FreeMarkerAutoConfiguration])
86+
# FREEMARKER ({sc-spring-boot-autoconfigure}/freemarker/FreeMarkerAutoConfiguration.{sc-ext}[FreeMarkerAutoConfiguration])
8787
spring.freemarker.allowRequestOverride=false
8888
spring.freemarker.allowSessionOverride=false
8989
spring.freemarker.cache=true
@@ -100,7 +100,7 @@ content into your application; rather pick only the properties that you need.
100100
spring.freemarker.templateLoaderPath=classpath:/templates/
101101
spring.freemarker.viewNames= # whitelist of view names that can be resolved
102102
103-
# GROOVY TEMPLATES ({sc-spring-boot-autoconfigure}}/groovy/template/GroovyTemplateAutoConfiguration.{sc-ext}[GroovyTemplateAutoConfiguration])
103+
# GROOVY TEMPLATES ({sc-spring-boot-autoconfigure}/groovy/template/GroovyTemplateAutoConfiguration.{sc-ext}[GroovyTemplateAutoConfiguration])
104104
spring.groovy.template.allowRequestOverride=false
105105
spring.groovy.template.allowSessionOverride=false
106106
spring.groovy.template.cache=true
@@ -111,7 +111,7 @@ content into your application; rather pick only the properties that you need.
111111
spring.groovy.template.templateEncoding=UTF-8
112112
spring.groovy.template.viewNames= # whitelist of view names that can be resolved
113113
114-
# VELOCITY TEMPLATES ({sc-spring-boot-autoconfigure}}/velocity/VelocityAutoConfiguration.{sc-ext}[VelocityAutoConfiguration])
114+
# VELOCITY TEMPLATES ({sc-spring-boot-autoconfigure}/velocity/VelocityAutoConfiguration.{sc-ext}[VelocityAutoConfiguration])
115115
spring.velocity.allowRequestOverride=false
116116
spring.velocity.allowSessionOverride=false
117117
spring.velocity.cache=true
@@ -153,7 +153,7 @@ content into your application; rather pick only the properties that you need.
153153
security.sessions=stateless # always / never / if_required / stateless
154154
security.ignored=false
155155
156-
# DATASOURCE ({sc-spring-boot-autoconfigure}/jdbc/DataSourceAutoConfiguration.{sc-ext}[DataSourceAutoConfiguration] & {sc-spring-boot-autoconfigure}//jdbc/AbstractDataSourceConfiguration.{sc-ext}[AbstractDataSourceConfiguration])
156+
# DATASOURCE ({sc-spring-boot-autoconfigure}/jdbc/DataSourceAutoConfiguration.{sc-ext}[DataSourceAutoConfiguration] & {sc-spring-boot-autoconfigure}/jdbc/DataSourceProperties.{sc-ext}[DataSourceProperties])
157157
spring.datasource.name= # name of the data source
158158
spring.datasource.initialize=true # populate using data.sql
159159
spring.datasource.schema= # a schema (DDL) script resource reference
@@ -246,14 +246,14 @@ content into your application; rather pick only the properties that you need.
246246
spring.redis.pool.max-active=8
247247
spring.redis.pool.max-wait=-1
248248
249-
# ACTIVEMQ ({sc-spring-boot-autoconfigure}/jms/ActiveMQProperties.{sc-ext}[ActiveMQProperties])
249+
# ACTIVEMQ ({sc-spring-boot-autoconfigure}/jms/activemq/ActiveMQProperties.{sc-ext}[ActiveMQProperties])
250250
spring.activemq.broker-url=tcp://localhost:61616 # connection URL
251251
spring.activemq.user=
252252
spring.activemq.password=
253253
spring.activemq.in-memory=true # broker kind to create if no broker-url is specified
254254
spring.activemq.pooled=false
255255
256-
# HornetQ ({sc-spring-boot-autoconfigure}/jms/HornetQProperties.{sc-ext}[HornetQProperties])
256+
# HornetQ ({sc-spring-boot-autoconfigure}/jms/hornetq/HornetQProperties.{sc-ext}[HornetQProperties])
257257
spring.hornetq.mode= # connection mode (native, embedded)
258258
spring.hornetq.host=localhost # hornetQ host (native mode)
259259
spring.hornetq.port=5445 # hornetQ port (native mode)
@@ -264,7 +264,7 @@ content into your application; rather pick only the properties that you need.
264264
spring.hornetq.embedded.topics= # comma separate topics to create on startup
265265
spring.hornetq.embedded.cluster-password= # customer password (randomly generated by default)
266266
267-
# JMS ({sc-spring-boot-autoconfigure}/jms/JmsTemplateProperties.{sc-ext}[JmsTemplateProperties])
267+
# JMS ({sc-spring-boot-autoconfigure}/jms/JmsProperties.{sc-ext}[JmsProperties])
268268
spring.jms.pub-sub-domain= # false for queue (default), true for topic
269269
270270
# SPRING BATCH ({sc-spring-boot-autoconfigure}/batch/BatchDatabaseInitializer.{sc-ext}[BatchDatabaseInitializer])

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ For example:
102102
NOTE: There are some restrictions when creating an `ApplicationContext` hierarchy, e.g.
103103
Web components *must* be contained within the child context, and the same `Environment`
104104
will be used for both parent and child contexts. See the
105-
{dc-spring-boot}/builder/SpringApplication.{dc-ext}[`SpringApplicationBuilder` javadoc]
105+
{dc-spring-boot}/builder/SpringApplicationBuilder.{dc-ext}[`SpringApplicationBuilder` javadoc]
106106
for full details.
107107

108108

@@ -1244,7 +1244,7 @@ in `application.properties`:
12441244
spring.datasource.driverClassName=com.mysql.jdbc.Driver
12451245
----
12461246

1247-
See {sc-spring-boot-autoconfigure}/jdbc/AbstractDataSourceConfiguration.{sc-ext}[`AbstractDataSourceConfiguration`]
1247+
See {sc-spring-boot-autoconfigure}/jdbc/DataSourceProperties.{sc-ext}[`DataSourceProperties`]
12481248
for more of the supported options.
12491249

12501250
NOTE: For a pooling `DataSource` to be created we need to be able to verify that a valid
@@ -1609,7 +1609,7 @@ https://github.com/spring-projects/spring-data-gemfire/blob/master/src/main/java
16091609
=== Solr
16101610
http://lucene.apache.org/solr/[Apache Solr] is a search engine. Spring Boot offers basic
16111611
auto-configuration for the solr client library and abstractions on top of it provided by
1612-
https://github.com/spring-projects/spring-data-elasticsearch[Spring Data Solr]. There is
1612+
https://github.com/spring-projects/spring-data-solr[Spring Data Solr]. There is
16131613
a `spring-boot-starter-data-solr` ``Starter POM'' for collecting the dependencies in a
16141614
convenient way.
16151615

@@ -1662,7 +1662,7 @@ http://projects.spring.io/spring-data-solr/[reference documentation].
16621662
http://www.elasticsearch.org/[Elastic Search] is an open source, distributed,
16631663
real-time search and analytics engine. Spring Boot offers basic auto-configuration for
16641664
the Elasticsearch and abstractions on top of it provided by
1665-
[Spring Data Elasticsearch](https://github.com/spring-projects/spring-data-elasticsearch).
1665+
https://github.com/spring-projects/spring-data-elasticsearch[Spring Data Elasticsearch].
16661666
There is a `spring-boot-starter-data-elasticsearch` ``Starter POM'' for collecting the
16671667
dependencies in a convenient way.
16681668

@@ -1710,7 +1710,7 @@ infrastructure; so you could take the JPA example from earlier and, assuming tha
17101710
work in the same way.
17111711

17121712
TIP: For complete details of Spring Data Elasticsearch, refer to their
1713-
http://projects.spring.io/spring-data-elasticsearch/[reference documentation].
1713+
http://docs.spring.io/spring-data/elasticsearch/docs/[reference documentation].
17141714

17151715

17161716

0 commit comments

Comments
 (0)