public interface ISpincastConfig
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getContentTypesToSkipGziping()
Even if gziping of the response is enabled, those Content-Types
still won't be gzipped.
|
Locale |
getDefaultLocale()
The default Locale to use if no other Locale can be found
as a "best match", for the current request.
|
int |
getDefaultRouteCacheFilterSecondsNbr()
When using the
.cache() method on
a route builder, this is the default number of
seconds to use. |
Integer |
getDefaultRouteCacheFilterSecondsNbrCdns()
When using the
.cache() method on
a route builder, this is the default number of
seconds to use by the CDNs. |
IStaticResourceCacheConfig |
getDefaultStaticResourceCacheConfig(boolean isDynamicResource)
The default cache configurations for the static resource.
|
int |
getDefaultTemplateVariablesFilterPosition()
If
addGlobalTemplateVariablesAdderFilter
erturns true, then this is the position at
which the filter will be added. |
String |
getEnvironmentName()
Returns the name of the environment.
|
int |
getHttpServerPort()
The HTTP (unsecure) port on which the server will listen on.
|
String |
getHttpsKeyStoreKeypass()
The "keypass" of the
KeyStore, for SSL. |
String |
getHttpsKeyStorePath()
The path to the
KeyStore, for SSL. |
String |
getHttpsKeyStoreStorePass()
The "storepass" of the
KeyStore, for SSL. |
String |
getHttpsKeyStoreType()
The type of the
KeyStore, for SSL. |
int |
getHttpsServerPort()
The HTTPS (secure) port on which the server will listen on.
|
int |
getRouteForwardingMaxNumber()
The maximum number of time a request can be forwarded to another
route.
|
String |
getServerHost()
The host/IP on which the server will listen to.
|
long |
getServerMaxRequestBodyBytes()
Maximum number of bytes a request's body can have.
|
File |
getSpincastWritableDir()
A directory where temporary generated files
can be written by Spincast.
|
boolean |
isAddDefaultTemplateVariablesFilter()
Should the GlobalTemplateVariablesAdderFilter be automatically
added to all routes?
|
boolean |
isDebugEnabled()
Let this to
true on development environment,
where errors can be publicly displayed, where cache can
be disabled, etc. |
boolean |
isDefaultRouteCacheFilterPrivate()
When using the
.cache() method on
a route builder, is the cache private by default? |
boolean |
isDisableWriteToDiskDynamicStaticResource()
If
true, the dynamic resources (static resource
which have a generator in case they don't exist) won't be
saved to disk. |
boolean |
isRoutesCaseSensitive()
Are the URLS case-sensitive or not, during the route matching
process?
The default value is
false. |
boolean isDebugEnabled()
true on development environment,
where errors can be publicly displayed, where cache can
be disabled, etc. In production set it to false
The default value is true.true if debug mode is enabled.String getServerHost()
0.0.0.0.int getHttpServerPort()
44419 so HTTP
is enabled by default.int getHttpsServerPort()
-1 so HTTPS
is not enabled by default.String getHttpsKeyStorePath()
KeyStore, for SSL. Can be a
classpath path or and absolute path.
The classpath will be checked first.
Only used if getHttpsServerPort() returns a port > 0.
The default value is null.KeyStoreString getHttpsKeyStoreType()
KeyStore, for SSL.
For example: "JKS".
Only used if getHttpsServerPort() returns a port > 0.
The default value is null.KeyStoreString getHttpsKeyStoreStorePass()
KeyStore, for SSL.
Only used if getHttpsServerPort() returns a port > 0.
The default value is null.KeyStoreString getHttpsKeyStoreKeypass()
KeyStore, for SSL.
Only used if getHttpsServerPort() returns a port > 0.
The default value is null.KeyStoreboolean isRoutesCaseSensitive()
false.String getEnvironmentName()
local.long getServerMaxRequestBodyBytes()
104857600 (100MB).List<String> getContentTypesToSkipGziping()
File getSpincastWritableDir()
This directory will be emptied each time the application starts.
The default value uses System.getProperty("java.io.tmpdir")
to create the directory.
Locale getDefaultLocale()
Locale.US.int getRouteForwardingMaxNumber()
2.int getDefaultRouteCacheFilterSecondsNbr()
.cache() method on
a route builder, this is the default number of
seconds to use.boolean isDefaultRouteCacheFilterPrivate()
.cache() method on
a route builder, is the cache private by default?Integer getDefaultRouteCacheFilterSecondsNbrCdns()
.cache() method on
a route builder, this is the default number of
seconds to use by the CDNs.IStaticResourceCacheConfig getDefaultStaticResourceCacheConfig(boolean isDynamicResource)
This will be used if no cache(...) method is
used when building the static resource's route.
isDynamicResource - if true, a generator is
use when the resource doesn't exist. Those kind of generated resources
may be modified more often then trully static resources, so we may
want to use a different caching period.null
so no cache headers are sent at all.boolean isDisableWriteToDiskDynamicStaticResource()
true, the dynamic resources (static resource
which have a generator in case they don't exist) won't be
saved to disk. THhis means that the generator will always be called,
so chnages during development will be picked up.boolean isAddDefaultTemplateVariablesFilter()
This filter bind some default variables to be used by the templating engine.
int getDefaultTemplateVariablesFilterPosition()
addGlobalTemplateVariablesAdderFilter
erturns true, then this is the position at
which the filter will be added.Copyright © 2016. All rights reserved.