data.WEB-INF.config.firebird.opencms.properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opencms-test Show documentation
Show all versions of opencms-test Show documentation
OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.
#
# Configuration of the driver manager
#################################################################################
driver.vfs=db
driver.project=db
driver.user=db
driver.subscription=db
driver.history=db
#
# Database setup (used only in tests)
#################################################################################
db.pool.setup.dbName=firebird
db.pool.setup.jdbcDriver=org.firebirdsql.jdbc.FBDriver
db.pool.setup.jdbcUrl=jdbc:firebirdsql://localhost//var/lib/firebird/2.0/data/fire.fdb?defaultResultSetHoldable=true
db.pool.setup.jdbcUrl.params=
db.pool.setup.user=SYSDBA
db.pool.setup.password=masterkey
#
# Declaration of database pools
#################################################################################
db.pools=default
#
# Configuration of the default database pool
#################################################################################
# name of the database (used only in tests)
db.pool.default.dbName=ocjutestdb
# name of the JDBC driver
db.pool.default.jdbcDriver=org.firebirdsql.jdbc.FBDriver
# URL of the JDBC driver
db.pool.default.jdbcUrl=jdbc:firebirdsql://localhost//var/lib/firebird/2.0/data/fire.fdb?defaultResultSetHoldable=true
# optional parameters for the URL of the JDBC driver
db.pool.default.jdbcUrl.params=
# user name to connect to the database
db.pool.default.user=SYSDBA
# password to connect to the database
db.pool.default.password=masterkey
# the URL to make the JDBC DriverManager return connections from the DBCP pool
db.pool.default.poolUrl=opencms:default
# the maximum number of objects that can be borrowed from the pool
db.pool.default.maxActive=25
# the maximum amount of time before throwing an exception when the pool is exhausted
db.pool.default.maxWait=2000
# the maximum number of objects that can sit idled in the pool
db.pool.default.maxIdle=10
# the query to validate connections
db.pool.default.testQuery=
# action to take when the pool is exhausted {grow|block|fail}
db.pool.default.whenExhaustedAction=block
# connections will be validated before they are borrowed from the pool
db.pool.default.testOnBorrow=false
#
# Configuration for statement pooling
#################################################################################
db.statements.default.pooling=true
db.statements.default.maxActive=200
db.statements.default.maxWait=2000
db.statements.default.maxIdle=100
db.statements.default.whenExhaustedAction=block
#
# Configuration of the database driver manager
#################################################################################
db.name=derby
db.vfs.driver=org.opencms.db.jpa.CmsVfsDriver
db.vfs.pool=opencms:default
db.vfs.sqlmanager=org.opencms.db.jpa.CmsSqlManager
db.project.driver=org.opencms.db.jpa.CmsProjectDriver
db.project.pool=opencms:default
db.project.sqlmanager=org.opencms.db.jpa.CmsSqlManager
db.user.driver=org.opencms.db.jpa.CmsUserDriver
db.user.pool=opencms:default
db.user.sqlmanager=org.opencms.db.jpa.CmsSqlManager
db.subscription.driver=org.opencms.db.jpa.CmsSubscriptionDriver
db.subscription.pool=opencms:default
db.subscription.sqlmanager=org.opencms.db.jpa.CmsSqlManager
db.history.driver=org.opencms.db.jpa.CmsHistoryDriver
db.history.pool=opencms:default
db.history.sqlmanager=org.opencms.db.jpa.CmsSqlManager
db.cos.pool=opencms:default
#
# The class used to generate cache keys
#################################################################################
cache.keygenerator=org.opencms.db.CmsCacheKey
#
# Ethernet address used for UUID generation
# Server name used for various messages
#################################################################################
server.ethernet.address=4b:60:ca:37:04:99
server.name=OpenCmsServer
#
# Enable/Disable OpenCms Setup Wizard
# The wizard sets the flag to false after the setup.
# To use the wizard again, reset it manually to true.
# By setting no value, wizard can always be used.
#################################################################################
wizard.enabled=false
© 2015 - 2024 Weber Informatics LLC | Privacy Policy