Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Spring configuration meta-data #115

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"properties": [
{
"name": "tsm.sticky",
"type": "java.lang.Boolean",
"description": "Whether sessions are configured to be sticky. More information at https://github.com/hazelcast/hazelcast-tomcat-sessionmanager#sticky-sessions-and-tomcat.",
"defaultValue": true
},
{
"name": "tsm.hazelcast.instance.name",
"type": "java.lang.String",
"description": "Name of the Hazelcast instance used to store session data.",
"defaultValue": "SESSION-REPLICATION-INSTANCE"
},
{
"name": "tsm.map.name",
"type": "java.lang.String",
"description": "Name of the Hazelcast map used to store session data.",
"defaultValue": "default"
},
{
"name": "tsm.deferred.write",
"type": "java.lang.Boolean",
"description": "Whether writes to the cluster are cached. More information at https://github.com/hazelcast/hazelcast-tomcat-sessionmanager#controlling-session-caching-with-deferredWrite.",
"defaultValue": true
},
{
"name": "tsm.config.location",
"type": "java.lang.String",
"description": "Location of the Hazelcast configuration file location.",
"defaultValue": "hazelcast-default.xml"
},
{
"name": "tsm.autoconfig.enabled",
"type": "java.lang.Boolean",
"description": "Set to false to disable auto-configuration.",
"defaultValue": true
},
{
"name": "tsm.process.expires.frequency",
"type": "java.lang.Integer",
"description": "Frequency of the session expiration, and related manager operations. More information at https://tomcat.apache.org/tomcat-9.0-doc/config/cluster-manager.html#Common_Attributes.",
"defaultValue": 6
}
]
}