Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
ed841ab5
Commit
ed841ab5
authored
Oct 22, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4272 from izeye/broken-links
* pr/4272: Fix broken links
parents
c0b8974b
e477598c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
appendix-application-properties.adoc
...cs/src/main/asciidoc/appendix-application-properties.adoc
+1
-1
howto.adoc
spring-boot-docs/src/main/asciidoc/howto.adoc
+1
-1
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+3
-3
CloudFoundryVcapEnvironmentPostProcessor.java
.../boot/cloud/CloudFoundryVcapEnvironmentPostProcessor.java
+1
-1
No files found.
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
View file @
ed841ab5
...
...
@@ -287,7 +287,7 @@ content into your application; rather pick only the properties that you need.
spring.mustache.suffix=.html
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.type=servlet # servlet or filter
spring.jersey.init= # init params
...
...
spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
ed841ab5
...
...
@@ -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
candidates it has not found at `TRACE` level.
See {sc-spring-boot}/context/config/ConfigFile
ApplicationListener.{sc-ext}[`ConfigFileApplicationListene
r`]
See {sc-spring-boot}/context/config/ConfigFile
EnvironmentPostProcessor.{sc-ext}[`ConfigFileEnvironmentPostProcesso
r`]
for more detail.
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
ed841ab5
...
...
@@ -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.
Using {spring-reference}/#_controller_method_cors_configuration[controller method CORS
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.
{spring-reference}/#_global_cors_configuration[Global CORS configuration] can be defined
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
as long as you have a `JtaTransactionManager` bean and appropriate XA wrapper beans
registered within your `ApplicationContext`.
The {sc-spring-boot}/jta/BitronixXAConnectionFactoryWrapper.{sc-ext}[BitronixXAConnectionFactoryWrapper]
and {sc-spring-boot}/jta/BitronixXADataSourceWrapper.{sc-ext}[BitronixXADataSourceWrapper]
The {sc-spring-boot}/jta/
bitronix/
BitronixXAConnectionFactoryWrapper.{sc-ext}[BitronixXAConnectionFactoryWrapper]
and {sc-spring-boot}/jta/
bitronix/
BitronixXADataSourceWrapper.{sc-ext}[BitronixXADataSourceWrapper]
provide good examples of how to write XA wrappers.
...
...
spring-boot/src/main/java/org/springframework/boot/cloud/CloudFoundryVcapEnvironmentPostProcessor.java
View file @
ed841ab5
...
...
@@ -99,7 +99,7 @@ public class CloudFoundryVcapEnvironmentPostProcessor
private
static
final
String
VCAP_SERVICES
=
"VCAP_SERVICES"
;
// Before ConfigFile
ApplicationListene
r so values there can use these ones
// Before ConfigFile
EnvironmentPostProcesso
r so values there can use these ones
private
int
order
=
ConfigFileEnvironmentPostProcessor
.
DEFAULT_ORDER
-
1
;
private
final
JsonParser
parser
=
JsonParserFactory
.
getJsonParser
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment