1
0
mirror of synced 2026-08-31 14:35:18 +00:00
Files

77 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2019-11-25 15:49:51 -06:00
[[servlet-http]]
= HTTP
2021-12-13 16:57:36 -06:00
All HTTP-based communication should be protected xref:features/exploits/http.adoc#http[using TLS].
2019-11-25 15:49:51 -06:00
2021-04-21 16:01:26 -05:00
This section discusses the details of servlet-specific features that assist with HTTPS usage.
2019-11-25 15:49:51 -06:00
[[servlet-http-redirect]]
== Redirect to HTTPS
2021-04-21 16:01:26 -05:00
If a client makes a request using HTTP rather than HTTPS, you can configure Spring Security to redirect to HTTPS.
2019-11-25 15:49:51 -06:00
2021-04-21 16:01:26 -05:00
For example, the following Java or Kotlin configuration redirects any HTTP requests to HTTPS:
2019-11-25 15:49:51 -06:00
2020-09-18 14:44:33 +02:00
.Redirect to HTTPS
2023-06-18 21:30:41 -05:00
[tabs]
======
Java::
+
2020-09-18 14:44:33 +02:00
[source,java,role="primary"]
2019-11-25 15:49:51 -06:00
----
@Configuration
@EnableWebSecurity
public class WebSecurityConfig {
2019-11-25 15:49:51 -06:00
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
2019-11-25 15:49:51 -06:00
http
// ...
2025-02-28 09:09:45 -07:00
.redirectToHttps(withDefaults());
return http.build();
2019-11-25 15:49:51 -06:00
}
}
----
2020-09-18 14:44:33 +02:00
2023-06-18 21:30:41 -05:00
Kotlin::
+
2020-09-18 14:44:33 +02:00
[source,kotlin,role="secondary"]
----
@Configuration
@EnableWebSecurity
class SecurityConfig {
2020-09-18 14:44:33 +02:00
@Bean
open fun filterChain(http: HttpSecurity): SecurityFilterChain {
2020-09-18 14:44:33 +02:00
http {
// ...
2025-02-28 09:09:45 -07:00
redirectToHttps { }
2020-09-18 14:44:33 +02:00
}
return http.build()
2020-09-18 14:44:33 +02:00
}
}
----
2023-06-18 21:30:41 -05:00
======
2019-11-25 15:49:51 -06:00
2021-04-21 16:01:26 -05:00
The following XML configuration redirects all HTTP requests to HTTPS
2019-11-25 15:49:51 -06:00
.Redirect to HTTPS with XML Configuration
[source,xml]
----
<http>
<intercept-url pattern="/**" access="ROLE_USER" requires-channel="https"/>
...
</http>
----
[[servlet-hsts]]
== Strict Transport Security
2021-07-30 16:56:54 -05:00
Spring Security provides support for xref:servlet/exploits/headers.adoc#servlet-headers-hsts[Strict Transport Security] and enables it by default.
2019-11-25 15:49:51 -06:00
[[servlet-http-proxy-server]]
== Proxy Server Configuration
2021-08-10 15:21:42 -05:00
Spring Security xref:features/exploits/http.adoc#http-proxy-server[integrates with proxy servers].