Commit e477598c authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Fix broken links

Closes gh-4272
parent c0b8974b
...@@ -287,7 +287,7 @@ content into your application; rather pick only the properties that you need. ...@@ -287,7 +287,7 @@ content into your application; rather pick only the properties that you need.
spring.mustache.suffix=.html spring.mustache.suffix=.html
spring.mustache.view-names= # whitelist of view names that can be resolved spring.mustache.view-names= # whitelist of view names that can be resolved
# JERSEY ({sc-spring-boot-autoconfigure}}/jersey/JerseyProperties.{sc-ext}[JerseyProperties]) # JERSEY ({sc-spring-boot-autoconfigure}/jersey/JerseyProperties.{sc-ext}[JerseyProperties])
spring.jersey.application-path # path that serves as the base URI for the application spring.jersey.application-path # path that serves as the base URI for the application
spring.jersey.type=servlet # servlet or filter spring.jersey.type=servlet # servlet or filter
spring.jersey.init= # init params spring.jersey.init= # init params
......
...@@ -188,7 +188,7 @@ extension are also added to the list by default. ...@@ -188,7 +188,7 @@ extension are also added to the list by default.
Spring Boot logs the configuration files that are loaded at `DEBUG` level and the Spring Boot logs the configuration files that are loaded at `DEBUG` level and the
candidates it has not found at `TRACE` level. candidates it has not found at `TRACE` level.
See {sc-spring-boot}/context/config/ConfigFileApplicationListener.{sc-ext}[`ConfigFileApplicationListener`] See {sc-spring-boot}/context/config/ConfigFileEnvironmentPostProcessor.{sc-ext}[`ConfigFileEnvironmentPostProcessor`]
for more detail. for more detail.
......
...@@ -1570,7 +1570,7 @@ and less powerful approaches like IFRAME or JSONP. ...@@ -1570,7 +1570,7 @@ and less powerful approaches like IFRAME or JSONP.
As of version 4.2, Spring MVC {spring-reference}/#cors[supports CORS] out of the box. As of version 4.2, Spring MVC {spring-reference}/#cors[supports CORS] out of the box.
Using {spring-reference}/#_controller_method_cors_configuration[controller method CORS Using {spring-reference}/#_controller_method_cors_configuration[controller method CORS
configuration] with configuration] with
{spring-javadoc}/org/springframework/web/bind/annotation/CrossOrigin.html[`@CrossOrigin`] {spring-javadoc}/web/bind/annotation/CrossOrigin.html[`@CrossOrigin`]
annotations in your Spring Boot application does not require any specific configuration. annotations in your Spring Boot application does not require any specific configuration.
{spring-reference}/#_global_cors_configuration[Global CORS configuration] can be defined {spring-reference}/#_global_cors_configuration[Global CORS configuration] can be defined
by registering a `WebMvcConfigurer` bean with a customized `addCorsMappings(CorsRegistry)` by registering a `WebMvcConfigurer` bean with a customized `addCorsMappings(CorsRegistry)`
...@@ -3538,8 +3538,8 @@ the distributed transaction. DataSource and JMS auto-configuration will use JTA ...@@ -3538,8 +3538,8 @@ the distributed transaction. DataSource and JMS auto-configuration will use JTA
as long as you have a `JtaTransactionManager` bean and appropriate XA wrapper beans as long as you have a `JtaTransactionManager` bean and appropriate XA wrapper beans
registered within your `ApplicationContext`. registered within your `ApplicationContext`.
The {sc-spring-boot}/jta/BitronixXAConnectionFactoryWrapper.{sc-ext}[BitronixXAConnectionFactoryWrapper] The {sc-spring-boot}/jta/bitronix/BitronixXAConnectionFactoryWrapper.{sc-ext}[BitronixXAConnectionFactoryWrapper]
and {sc-spring-boot}/jta/BitronixXADataSourceWrapper.{sc-ext}[BitronixXADataSourceWrapper] and {sc-spring-boot}/jta/bitronix/BitronixXADataSourceWrapper.{sc-ext}[BitronixXADataSourceWrapper]
provide good examples of how to write XA wrappers. provide good examples of how to write XA wrappers.
......
...@@ -99,7 +99,7 @@ public class CloudFoundryVcapEnvironmentPostProcessor ...@@ -99,7 +99,7 @@ public class CloudFoundryVcapEnvironmentPostProcessor
private static final String VCAP_SERVICES = "VCAP_SERVICES"; private static final String VCAP_SERVICES = "VCAP_SERVICES";
// Before ConfigFileApplicationListener so values there can use these ones // Before ConfigFileEnvironmentPostProcessor so values there can use these ones
private int order = ConfigFileEnvironmentPostProcessor.DEFAULT_ORDER - 1; private int order = ConfigFileEnvironmentPostProcessor.DEFAULT_ORDER - 1;
private final JsonParser parser = JsonParserFactory.getJsonParser(); private final JsonParser parser = JsonParserFactory.getJsonParser();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment