2016-09-23 13:02:27 -05:00
[[jackson]]
2021-07-30 13:52:15 -05:00
= Jackson Support
2016-09-23 13:02:27 -05:00
2020-03-18 13:59:40 -04:00
Spring Security provides Jackson support for persisting Spring Security related classes.
2016-09-23 13:02:27 -05:00
This can improve the performance of serializing Spring Security related classes when working with distributed sessions (i.e. session replication, Spring Session, etc).
2025-09-01 18:23:31 +02:00
To use it, register the `SecurityJacksonModules.getModules(ClassLoader)` with `JsonMapper.Builder` (https://github.com/FasterXML/jackson-databind[jackson-databind]):
2016-09-23 13:02:27 -05:00
2023-06-18 21:30:41 -05:00
[tabs]
======
Java::
+
2021-06-16 10:31:29 +02:00
[source,java,role="primary"]
2016-09-23 13:02:27 -05:00
----
ClassLoader loader = getClass().getClassLoader();
2025-09-01 18:23:31 +02:00
JsonMapper mapper = JsonMapper.builder()
.addModules(SecurityJacksonModules.getModules(loader))
.build();
2016-09-23 13:02:27 -05:00
2025-09-01 18:23:31 +02:00
// ... use JsonMapper as normally ...
2016-09-23 13:02:27 -05:00
SecurityContext context = new SecurityContextImpl();
// ...
String json = mapper.writeValueAsString(context);
----
2020-03-18 13:59:40 -04:00
2023-06-18 21:30:41 -05:00
Kotlin::
+
2021-06-16 10:31:29 +02:00
[source,kotlin,role="secondary"]
----
val loader = javaClass.classLoader
2025-09-01 18:23:31 +02:00
val mapper = JsonMapper.builder()
.addModules(SecurityJacksonModules.getModules(loader))
.build()
2021-06-16 10:31:29 +02:00
2025-09-01 18:23:31 +02:00
// ... use JsonMapper as normally ...
2021-06-16 10:31:29 +02:00
val context: SecurityContext = SecurityContextImpl()
// ...
val json: String = mapper.writeValueAsString(context)
----
2023-06-18 21:30:41 -05:00
======
2021-06-16 10:31:29 +02:00
2020-03-18 13:59:40 -04:00
[NOTE]
====
The following Spring Security modules provide Jackson support:
2025-09-01 18:23:31 +02:00
- spring-security-core (`CoreJacksonModule`)
- spring-security-web (`WebJacksonModule`, `WebServletJacksonModule`, `WebServerJacksonModule`)
- xref:servlet/oauth2/client/index.adoc#oauth2client[ spring-security-oauth2-client] (`OAuth2ClientJacksonModule`)
- spring-security-cas (`CasJacksonModule`)
2020-03-18 13:59:40 -04:00
====