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
01ba732a
Commit
01ba732a
authored
Jun 14, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Consistent use of "=" for property key
Closes gh-3218
parent
defceec9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
howto.adoc
spring-boot-docs/src/main/asciidoc/howto.adoc
+8
-8
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+1
-1
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+2
-2
No files found.
spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
01ba732a
...
@@ -414,10 +414,10 @@ typically in `application.properties` or `application.yml`. For example:
...
@@ -414,10 +414,10 @@ typically in `application.properties` or `application.yml`. For example:
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
----
server.port
=
8443
server.port
=
8443
server.ssl.key-store
=
classpath:keystore.jks
server.ssl.key-store
=
classpath:keystore.jks
server.ssl.key-store-password
=
secret
server.ssl.key-store-password
=
secret
server.ssl.key-password
=
another-secret
server.ssl.key-password another-secret
----
----
See {sc-spring-boot}/context/embedded/Ssl.{sc-ext}[`Ssl`] for details of all of the
See {sc-spring-boot}/context/embedded/Ssl.{sc-ext}[`Ssl`] for details of all of the
...
@@ -837,7 +837,7 @@ default, but can easily be enabled via `application.properties`:
...
@@ -837,7 +837,7 @@ default, but can easily be enabled via `application.properties`:
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
----
server.tomcat.compression
:
on
server.tomcat.compression
=
on
----
----
When set to `on` Tomcat will compress responses with a length that is at least 2048
When set to `on` Tomcat will compress responses with a length that is at least 2048
...
@@ -846,7 +846,7 @@ e.g.:
...
@@ -846,7 +846,7 @@ e.g.:
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
----
server.tomcat.compression
:
4096
server.tomcat.compression
=
4096
----
----
By default Tomcat will only compress responses with certain MIME types
By default Tomcat will only compress responses with certain MIME types
...
@@ -1168,8 +1168,8 @@ then you can do that in `application.properties` using the "logging.level" prefi
...
@@ -1168,8 +1168,8 @@ then you can do that in `application.properties` using the "logging.level" prefi
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
----
logging.level.org.springframework.web
:
DEBUG
logging.level.org.springframework.web
=
DEBUG
logging.level.org.hibernate
:
ERROR
logging.level.org.hibernate
=
ERROR
----
----
You can also set the location of a file to log to (in addition to the console) using
You can also set the location of a file to log to (in addition to the console) using
...
...
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
01ba732a
...
@@ -244,7 +244,7 @@ to your application properties:
...
@@ -244,7 +244,7 @@ to your application properties:
[source,properties,indent=0]
[source,properties,indent=0]
----
----
management.health.status.order
:
DOWN, OUT_OF_SERVICE, UNKNOWN, UP
management.health.status.order
=
DOWN, OUT_OF_SERVICE, UNKNOWN, UP
----
----
You might also want to register custom status mappings with the `HealthMvcEndpoint`
You might also want to register custom status mappings with the `HealthMvcEndpoint`
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
01ba732a
...
@@ -890,8 +890,8 @@ FATAL, OFF. Example `application.properties`:
...
@@ -890,8 +890,8 @@ FATAL, OFF. Example `application.properties`:
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
----
logging.level.org.springframework.web
:
DEBUG
logging.level.org.springframework.web
=
DEBUG
logging.level.org.hibernate
:
ERROR
logging.level.org.hibernate
=
ERROR
----
----
NOTE: By default Spring Boot remaps Thymeleaf `INFO` messages so that they are logged at
NOTE: By default Spring Boot remaps Thymeleaf `INFO` messages so that they are logged at
...
...
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