Marcus Hert Da Coregio
d5daa283f7
Add instructions if object is not deserialized into the right type
...
Closes gh-3009
2024-06-04 15:47:54 -03:00
Marcus Hert Da Coregio
1f90336df4
Merge branch '3.1.x' into 3.2.x
2024-05-13 10:31:09 -03:00
Stephen Kinser
8b485b6020
Doc cautions about index repo with Redis Cluster
...
Due to https://github.com/spring-projects/spring-data-redis/issues/1111 , applications can suffer from missing important Keyspace events as described at https://github.com/spring-projects/spring-session/issues/2230 .
This adds a caution to the docs to help others avoid running into this problem and suggests an alternative.
Mitigates #2230 .
2024-05-13 10:29:27 -03:00
Marcus Hert Da Coregio
3534dc462f
Merge branch '3.1.x' into 3.2.x
2024-05-09 09:07:57 -03:00
K Siva Prasad Reddy
628eaedc32
Improve documentation for JDBC JSON serialization.
2024-05-09 09:07:15 -03:00
Marcus Hert Da Coregio
6f6f7e81eb
Merge branch '3.1.x' into 3.2.x
...
Closes gh-2866
2024-03-18 10:59:33 -03:00
Marcus Hert Da Coregio
32681600b0
Remove references to spring.session.store-type
...
Closes gh-2858
2024-03-18 10:59:08 -03:00
Marcus Hert Da Coregio
66b8313f46
Merge branch '3.1.x' into 3.2.x
2024-03-04 10:33:30 -03:00
Marcus Hert Da Coregio
782e5eed1c
Add How to Customize Expired Sessions Clean-up Job
...
Issue gh-2827
2024-03-04 10:33:00 -03:00
Marcus Hert Da Coregio
ea14c336a9
Merge branch '3.1.x' into 3.2.x
...
Closes gh-2827 in 3.2.x
Closes gh-2831
2024-03-01 15:37:35 -03:00
Marcus Hert Da Coregio
c2a982c4a7
Add JDBC to Configurations section
...
Closes gh-2827
Closes gh-2829
2024-03-01 15:37:13 -03:00
Marcus Hert Da Coregio
bc6c30ee3a
Merge branch '3.1.x' into 3.2.x
...
Closes gh-2762
2024-01-23 09:06:23 -03:00
Marcus Hert Da Coregio
592b06404a
Documentation links should use variable for reference docs url
...
Closes gh-2761
2024-01-23 09:05:58 -03:00
Marcus Da Coregio
1f9853914b
Merge branch '3.1.x'
...
Closes gh-2570
2023-10-26 13:30:24 -03:00
Marcus Da Coregio
72b65f41a9
Document that a custom CookieSerializer might break Remember Me
...
Closes gh-2567
2023-10-26 13:29:55 -03:00
Marcus Da Coregio
d3786ce65e
Merge branch '3.1.x'
...
Closes gh-2468
2023-10-10 10:34:27 -03:00
Marcus Da Coregio
4602eaa194
Add Customizing Cookie to Common Configurations
...
Closes gh-2456
2023-10-10 10:32:05 -03:00
Marcus Da Coregio
3fe23375de
Allow Customizing Redis Session Mapper
...
Closes gh-2021
2023-10-04 11:34:09 -03:00
70825
5dff8acbf3
Update reference site link
2023-10-03 10:14:34 -03:00
70825
67e838f9cf
Update reference site link
2023-10-03 10:13:31 -03:00
Marcus Da Coregio
2d4233fcfd
Rename SessionIdGenerationStrategy to SessionIdGenerator
...
Closes gh-2391
2023-08-03 13:44:42 -03:00
Marcus Da Coregio
d547b33962
Introduce SessionIdGenerationStrategy
...
Closes gh-11
2023-07-13 09:48:44 -03:00
Marcus Da Coregio
fdcaa2dba0
Add Redis Configurations Section
...
Issue gh-2342
2023-07-04 15:37:46 -03:00
Marcus Da Coregio
da9b79b895
Remove Getting Started section
...
Closes gh-2341
2023-07-04 15:34:10 -03:00
Marcus Da Coregio
6b2920102c
Fix Getting Started sections returning 404
...
Closes gh-2335
2023-06-23 13:44:57 -03:00
Marcus Da Coregio
4847458879
Add Using Redis
...
Closes gh-2303
2023-05-23 15:13:20 -03:00
Marcus Da Coregio
edfaa4b106
Add Getting Started and Update Nav
...
Issue gh-2301
2023-05-22 17:12:32 -03:00
Marcus Da Coregio
d7afde883e
Merge branch '2.7.x' into 3.0.x
2023-05-10 14:53:13 -03:00
Marcus Da Coregio
9343e0b834
Explain the Problem
...
Issue gh-2295
2023-05-10 14:52:37 -03:00
Marcel Wollschläger
8da5068cac
Update Redis example documentation
...
With the release of Spring-Boot 3.x, the application properties for Redis
changed from `spring.redis` to `spring.data.redis`.
This change will update the documentation to be consistent with the latest
changes in Spring-Boot.
2023-01-24 09:44:47 -03:00
Marcus Da Coregio
9276e1ddc6
Merge branch '2.7.x'
2023-01-23 13:59:11 -03:00
Kaoru Muta
fab1f7b38e
docs: fix broken links in hazelcast documents
2023-01-23 13:57:39 -03:00
Vedran Pavic
f71d1d6ca4
Add Spring Session BOM module
...
With Spring Session Data Geode module being removed from the BOM, all of Spring Session's modules are now managed by this repository.
This means that the BOM itself can be moved to this repository, in order to simplify the overall project maintenance.
See gh-2195
2022-10-25 14:33:58 -05:00
Vedran Pavic
e050a92fad
Restructure Redis HttpSession configuration support
...
This commit restructures configuration support for Redis-backed
HttpSession with aim to enable users to easily select the
SessionRepository implementation they prefer to use.
This is achieved by introducing [at]EnableRedisIndexedHttpSession
annotation that can be used to configure RedisIndexedSessionRepository,
while the existing [at]EnableRedisHttpSession will going forward
configure RedisSessionRepository as the SessionRepository implementation
used by Spring Session.
Additionally, this also introduces AbstractRedisHttpSessionConfiguration
as the base configuration class that manages common aspects of
Redis-backed HttpSession support, which is then extended by more
specific configuration classes that provide specific SessionRepository
implementation.
Closes gh-2122
2022-09-07 09:46:55 -05:00
Eleftheria Stein
0d458a4a5b
Update Redis docs
...
Issue gh-1711
2022-04-29 09:03:57 +02:00
Eleftheria Stein
102027a456
Add Caffeine community extension
...
Closes gh-2039
2022-04-27 09:53:55 +02:00
Eleftheria Stein
e580a97c0c
Fix link to Infinispan cache
2022-04-27 09:53:55 +02:00
Eleftheria Stein
aaed973d27
Add Caffeine community extension
...
Closes gh-2039
2022-04-27 09:50:11 +02:00
Eleftheria Stein
55c4fcfd3f
Fix link to Infinispan cache
2022-04-27 09:49:41 +02:00
Guillaume Husta
91f20ca58c
Doc : typo on Username _user-
...
user should be in italic
2021-11-19 15:14:58 +01:00
Guillaume Husta
72159794f4
Doc : typo on Username _user-
...
user should be in italic
2021-11-19 14:56:56 +01:00
Eleftheria Stein
a9b9ae347f
Upgrade to Spring Framework 6.0
...
Closes gh-1950
2021-11-12 10:34:27 +01:00
Eleftheria Stein
b6f90640a6
Use updated version names in docs
...
Issue gh-1942
2021-10-29 13:27:12 +02:00
Rob Winch
1cdf77330c
Fix missing attribute
...
- Use spring-session-data-mongodb-dir
- Update example to use symlink location
2021-10-26 20:50:57 -05:00
Eleftheria Stein
b79b069178
Fix API link in docs
...
Closes gh-1940
2021-10-26 10:17:36 +02:00
Greg L. Turnquist
bf139dbbb3
Introduce Spring Session MongoDB
...
* Migrate the module's code back into this project.
* Fold the documentation in.
* Update to current Gradle conventions.
* Reformat to match styling.
2021-10-20 11:57:27 +02:00
Eleftheria Stein
beb7b334c4
Fix link to Spring Security remember-me docs
...
Closes gh-1915
2021-10-04 16:34:52 +02:00
Rob Winch
aee65ffec8
Remove :toc: left
...
This causes an extra toc that covers the left navigation
2021-08-20 14:29:21 -05:00
Rob Winch
0864140dda
Clean up introduction
2021-08-18 11:19:21 -05:00
Rob Winch
7babddf15f
Fix default xref text
2021-08-18 11:16:36 -05:00