The following table describes the ZooKeeper properties of the Lists microservice:
S.NO | PROPERTY | DESCRIPTION |
---|---|---|
1 | server.servlet.contextPath | This property holds the context path of the Spring Boot application. |
2 | server.ssl.enabled | This property controls the SSL configuration of the Boot application. When it is set to true, the application is started in HTTPS protocol only and all HTTP request will be rejected. |
3 | server.ssl.enabled-protocols | This property holds the SSL protocols enabled for this application. The values are given as comma-separated. |
4 | server.ssl.key-alias | This property holds the key store alias name set during the import using keytool utility. |
5 | server.ssl.key-store | This property holds the key store's PrivateKeyEntry which will be used as the SSL certificate for the microservice. |
6 | server.ssl.key-store-password | This property holds the key store password for accessing the key store as mentioned in the key-store property. |
7 | server.ssl.key-store-type | This property holds the key store type. |
8 | server.tomcat.accesslog.directory | This property holds the directory in which log files are created. It can be absolute or relative to the Tomcat's base directory. |
9 | server.tomcat.accesslog.enabled | This property controls the Tomcat logs for the Boot application. |
10 | server.tomcat.accesslog.max-days | The property holds the maximum number of days the rotated access logs will be retained before it is deleted. The default value is 10 days. |
11 | server.tomcat.accesslog.pattern | This property holds the pattern of the access logs to be printed. This will follow the Apache Tomcat parameters. |
12 | server.tomcat.max-threads | This property controls the Tomcat request thread. |
13 | skava.auditlog.enabled | This property is used to enable the Mongo SSL component. It is set to enable or disable the audit log component. |
14 | skava.auditlog.file-location | This property enables or disables the audit log component. |
15 | skava.auditlog.layout-type | This property describes the layout type details. |
16 | skava.auditlog.mongodb.database | This property is used to set the database name for the Mongo server. |
17 | skava.auditlog.mongodb.enabled | This property is used to enable or disable to store the audit logs in the Mongo DB. |
18 | skava.auditlog.mongodb.host | This property is used to set the host for the Mongo server. |
19 | skava.auditlog.mongodb.mongoAuthRequired | This property is used to set the port for the Mongo server. |
20 | skava.auditlog.mongodb.password | This property is used to set the password for the Mongo server. |
21 | skava.auditlog.mongodb.port | This property is used to set the port for the Mongo server. |
22 | skava.auditlog.mongodb.sslEnabled | This property is used to enable the Mongo SSL component. |
23 | skava.auditlog.mongodb.uri | This property connects to the Mongo server. |
24 | skava.auditlog.mongodb.userName | This property is used to set the username for the Mongo server. |
25 | skava.authorization.authExpiryTimeMins | This property holds the expiry time of authorization token generated using the getTestToken API call. The value is mentioned in minutes. |
26 | skava.authorization.authHeader | This property holds the HTTP request header name in which the authorization token (JWT) is passed by the caller. Since the functionality of validating token is inherited from the framework, this property's value is used for identifying the correct header and its value is considered for access/authorization checks. |
27 | skava.authorization.enabled | This property indicates whether the authorization component is enabled or disabled for the corresponding microservice. If the value is set as false, then all APIs are open to access without any authorization check and this is not recommended for the production or public APIs. For the production, production-like, or public environments, this property should be enabled (true). |
28 | skava.authorization.gettesttoken.enabled | This property indicates whether the authorization endpoint for test JWT tokens is enabled or not. If it is set to true, an API will be exposed to obtain test JWT tokens. |
29 | skava.authorization.superAdminRoleName | The property indicates the Super Admin role name for the corresponding microservice. |
30 | skava.authorization.tokenSecret | This property holds the secret which will be used to verify the signature of the JWT passed by the caller. Only if the JWT passed by the caller found valid with respect to signature, expiry and having necessary privileges, the request will be processed further. |
31 | skava.cache.cascadeCacheNames | This property enables the Cascade cache by its name. |
32 | skava.cache.enableCascade | This property enables or disables the Cascade cache. |
33 | skava.cache.enabled | This property enables or disables the cache. |
34 | skava.cache.localCache.config.cache_listcollection.cacheSize | This property holds the local cache entry size. |
35 | skava.cache.localCache.config.cache_listcollection.maxIdleInSeconds | This property holds the maximum idle time of the local cache in seconds. |
36 | skava.cache.localCache.config.cache_listcollection.timeToLiveInSeconds | This property holds the local cache expiry time in seconds. |
37 | skava.cache.localCache.type | This property sets the local cache type for L1 cache used in the cascade cache (uses both in-memory cache and server-side cache using Redis). |
38 | skava.cache.maxCacheSize | This property holds the cache size in bytes. If the value is greater than 0, then the cache is restricted based on the value. Otherwise, no limitation for cache. |
39 | skava.cache.redis.cacheNames | This property holds the Redis cache names used by the application. |
40 | skava.cache.redis.clearCacheEventName | This property is used to set the event name for cache clear operation. |
41 | skava.cache.redis.client | This property indicates the type of client for Redis connection. |
42 | skava.cache.redis.cluster.maxRedirects | This property contains the maximum number of redirects to follow when executing commands across the clusters of the Redis server. |
43 | skava.cache.redis.cluster.nodes | This property contains a list of comma-separated host:port pairs to bootstrap from. This represents an initial list of cluster nodes. It is required to have at least one entry. |
44 | skava.cache.redis.clusterEnabled | This property enables or disables the cluster of the Redis server. |
45 | skava.cache.redis.database | This property holds the Redis database index used by the connection factory. |
46 | skava.cache.redis.enabled | This property indicates whether the Redis component needs to be enabled or disabled for this application. It is recommended that it should be enabled (true) for the production and production-grade environments (like performance). |
47 | skava.cache.redis.expTimeTolive | This property holds the expiration time of Redis entries. That is the maximum time the objects are requested to be held in the Redis server. Using this property you are requesting Redis to hold the objects for the specified time but it is the LRU/LCU which will determine how long an entry survives in the cache. |
48 | skava.cache.redis.host | This property holds the Redis server's hostname/IP for caching objects. |
49 | skava.cache.redis.maxTimeTolive | This property holds the expiration time of the Redis entries. That is the maximum time the objects are requested to be held in the Redis server. Using this property you are requesting the Redis to hold the objects for the specified time but it is the LRU/LCU which will determine how long an entry survives in the cache. |
50 | skava.cache.redis.password | This property holds the password for connecting to the Redis server. This is required if the authentication is enabled for the Redis server. It is recommended to enable (that is, setting the value true ) for the production cache server environment. |
Showing 1 to 50 of 137 entries

2024-06-19 | SD – Updated ZK properties for 8.17.0 to 8.16.0.
2023-10-22 | JP – Updated content for 8.15.4 release.
2023-01-06 | AN – Updated content for 8.13 release.
2022-04-10 | JP – Fixed link and http issues.
2021-12-27 | AN – Updated content for 8.11 release.
2020-12-10 | AN – Added the missing properties.
2020-03-09 | AN – Updated content for April 2020 release.
2020-01-14 | AN – Updated content for February 2020 release.
2019-07-09 | AM – Updated ZK properties for July 2019 release.
2019-06-09 | PLK – Minor copyedits.
2019-05-16 | AN – Updated to a new table tool.
2019-01-23 | PLK – Page created and content uploaded.