I want to integrate session failover for Backoffice login and followed all the steps given in the below link but not working. New records are not added in the
Below is my configuration in local.properties file:
#HTTP Session Failover
# Global Configuration
spring.session.enabled=true
spring.session.save.async.interval=5000
spring.session.save.async.queue.size=10000
spring.session.save.async.max.items=2000
spring.serialization.check.response.error=false
#Extension Specific Properties
spring.session.customcore.save=async
spring.session. customcore.cookie.name=JSESSIONID
spring.session. customcore.cookie.path=/
spring.session. customcore.secure=true
spring.session. customcore.httponly=true
session.serialization.check=true
session.serialization.check.extensions= customcore
session.replication.support=true
After following all the step
I cant see new JSESSIONID and entries in storedhttpsession table.
Can someone help me this