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
9c35cd41
Commit
9c35cd41
authored
Nov 01, 2020
by
izeye
Committed by
Stephane Nicoll
Nov 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-23986
parent
f3134600
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
howto.adoc
...oot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
+1
-1
spring-boot-features.adoc
...ing-boot-docs/src/docs/asciidoc/spring-boot-features.adoc
+1
-1
ConfigurationMetadata.java
...onfigurationprocessor/metadata/ConfigurationMetadata.java
+1
-0
ConfigDataLocation.java
...ringframework/boot/context/config/ConfigDataLocation.java
+1
-1
No files found.
spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto.adoc
View file @
9c35cd41
...
...
@@ -653,7 +653,7 @@ As of Undertow 1.4.0+, HTTP/2 is supported without any additional requirement on
[[howto-configure-http2-h2c]]
==== HTTP/2 Cleartext with supported servers
To enable HTTP/2 with cleartext support, you need to leave the
`configprop:server.http2.enabled[]`
property set to `false`,
To enable HTTP/2 with cleartext support, you need to leave the
configprop:server.http2.enabled[]
property set to `false`,
and instead apply a customizer specific to your choice of server:
For Tomcat, we need to add an upgrade protocol:
...
...
spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc
View file @
9c35cd41
...
...
@@ -1441,7 +1441,7 @@ NOTE: The `prefix` value for the annotation _must_ be in kebab case (lowercase a
| Environment Variables
| Upper case format with underscore as the delimiter (see <<boot-features-external-config-relaxed-binding-from-environment-variables>>).
| Numeric values surrounded by underscores (see <<boot-features-external-config-relaxed-binding-from-environment-variables>>)
`
| Numeric values surrounded by underscores (see <<boot-features-external-config-relaxed-binding-from-environment-variables>>)
| System properties
| Camel case, kebab case, or underscore notation
...
...
spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ConfigurationMetadata.java
View file @
9c35cd41
...
...
@@ -68,6 +68,7 @@ public class ConfigurationMetadata {
/**
* Add item meta-data if it's not already present.
* @param itemMetadata the meta-data to add
* @since 2.4.0
*/
public
void
addIfMissing
(
ItemMetadata
itemMetadata
)
{
add
(
this
.
items
,
itemMetadata
.
getName
(),
itemMetadata
,
true
);
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataLocation.java
View file @
9c35cd41
...
...
@@ -121,7 +121,7 @@ public final class ConfigDataLocation implements OriginProvider {
/**
* Create a new {@link ConfigDataLocation} with a specific {@link Origin}.
* @param origin the orgin to set
* @param origin the or
i
gin to set
* @return a new {@link ConfigDataLocation} instance.
*/
ConfigDataLocation
withOrigin
(
Origin
origin
)
{
...
...
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