You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
+62Lines changed: 62 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -297,6 +297,68 @@
297
297
"level": "error"
298
298
}
299
299
},
300
+
{
301
+
"name": "management.server.ssl.ciphers",
302
+
"description": "Supported SSL ciphers."
303
+
},
304
+
{
305
+
"name": "management.server.ssl.client-auth",
306
+
"description": "Whether client authentication is wanted (\"want\") or needed (\"need\"). Requires a trust store."
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
+150-1Lines changed: 150 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,20 +29,169 @@
29
29
"level": "error"
30
30
}
31
31
},
32
+
{
33
+
"name": "server.compression.enabled",
34
+
"description": "Whether response compression is enabled.",
"description": "Comma-separated list of user agents for which responses should not be compressed."
40
+
},
41
+
{
42
+
"name": "server.compression.mime-types",
43
+
"description": "Comma-separated list of MIME types that should be compressed.",
44
+
"defaultValue": [
45
+
"text/html",
46
+
"text/xml",
47
+
"text/plain",
48
+
"text/css",
49
+
"text/javascript",
50
+
"application/javascript",
51
+
"application/json",
52
+
"application/xml"
53
+
]
54
+
},
32
55
{
33
56
"name": "server.compression.min-response-size",
34
57
"description": "Minimum \"Content-Length\" value that is required for compression to be performed.",
35
-
"type": "org.springframework.util.unit.DataSize",
36
58
"defaultValue": "2KB"
37
59
},
38
60
{
39
61
"name": "server.error.include-stacktrace",
40
62
"defaultValue": "never"
41
63
},
64
+
{
65
+
"name": "server.http2.enabled",
66
+
"description": "Whether to enable HTTP/2 support, if the current environment supports it.",
67
+
"defaultValue": false
68
+
},
42
69
{
43
70
"name": "server.port",
44
71
"defaultValue": 8080
45
72
},
73
+
{
74
+
"name": "server.servlet.jsp.class-name",
75
+
"description": "Class name of the servlet to use for JSPs. If registered is true and this class\n\t * is on the classpath then it will be registered.",
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ content into your application. Rather, pick only the properties that you need.
185
185
# EMBEDDED SERVER CONFIGURATION ({sc-spring-boot-autoconfigure}/web/ServerProperties.{sc-ext}[ServerProperties])
186
186
server.address= # Network address to which the server should bind.
187
187
server.compression.enabled=false # Whether response compression is enabled.
188
-
server.compression.excluded-user-agents= # List of user-agents to exclude from compression.
188
+
server.compression.excluded-user-agents= # Comma-separated list of useragents for which responses should not be compressed.
189
189
server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json,application/xml # Comma-separated list of MIME types that should be compressed.
190
190
server.compression.min-response-size=2KB # Minimum "Content-Length" value that is required for compression to be performed.
191
191
server.connection-timeout= # Time that connectors wait for another HTTP request before closing the connection. When not set, the connector's container-specific default is used. Use a value of -1 to indicate no (that is, an infinite) timeout.
@@ -216,23 +216,23 @@ content into your application. Rather, pick only the properties that you need.
server.ssl.key-alias= # Alias that identifies the key in the key store.
238
238
server.ssl.key-password= # Password used to access the key in the key store.
@@ -1204,21 +1204,21 @@ content into your application. Rather, pick only the properties that you need.
1204
1204
management.server.address= # Network address to which the management endpoints should bind. Requires a custom management.server.port.
1205
1205
management.server.port= # Management endpoint HTTP port (uses the same port as the application by default). Configure a different port to use management-specific SSL.
management.server.ssl.ciphers= # Supported SSL ciphers. Requires a custom management.port.
1208
-
management.server.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store. Requires a custom management.server.port.
1209
-
management.server.ssl.enabled= # Whether to enable SSL support. Requires a custom management.server.port.
1210
-
management.server.ssl.enabled-protocols= # Enabled SSL protocols. Requires a custom management.server.port.
1211
-
management.server.ssl.key-alias= # Alias that identifies the key in the key store. Requires a custom management.server.port.
1212
-
management.server.ssl.key-password= # Password used to access the key in the key store. Requires a custom management.server.port.
1213
-
management.server.ssl.key-store= # Path to the key store that holds the SSL certificate (typically a jks file). Requires a custom management.server.port.
1214
-
management.server.ssl.key-store-password= # Password used to access the key store. Requires a custom management.server.port.
1215
-
management.server.ssl.key-store-provider= # Provider for the key store. Requires a custom management.server.port.
1216
-
management.server.ssl.key-store-type= # Type of the key store. Requires a custom management.server.port.
1217
-
management.server.ssl.protocol=TLS # SSL protocol to use. Requires a custom management.server.port.
1218
-
management.server.ssl.trust-store= # Trust store that holds SSL certificates. Requires a custom management.server.port.
1219
-
management.server.ssl.trust-store-password= # Password used to access the trust store. Requires a custom management.server.port.
1220
-
management.server.ssl.trust-store-provider= # Provider for the trust store. Requires a custom management.server.port.
1221
-
management.server.ssl.trust-store-type= # Type of the trust store. Requires a custom management.server.port.
0 commit comments