# ------------------------------------------------------------------- # $Id$ # # This is the configuration file for Torque. # # Note that strings containing "," (comma) characters must backslash # escape the comma (i.e. '\,') # # ------------------------------------------------------------------- # NOTE NO torque. prefix on properties - this is a kluge to make it also include the TR.properties applicationRoot = . # ------------------------------------------------------------------- # # L O G G I N G # # ------------------------------------------------------------------- # We use Log4J for all Torque logging and we embed the log4j # properties within our application configuration. # ------------------------------------------------------------------- # THIS SEEMS TO BE IGNORED - HENCE IT IS DUPLICATED IN log4j.properties #log4j.category.org.apache.torque = ALL, org.apache.torque #log4j.appender.org.apache.torque = org.apache.log4j.FileAppender #log4j.appender.org.apache.file = ${applicationRoot}/logs/log #log4j.appender.org.apache.layout = org.apache.log4j.PatternLayout #log4j.appender.org.apache.layout.conversionPattern = %d [%t] %-5p %c - %m%n #log4j.appender.org.apache.append = false # ------------------------------------------------------------------- # # T O R Q U E P R O P E R T I E S # # ------------------------------------------------------------------- # These are your database settings. Look in the # org.apache.pool.* packages for more information. # # The parameters to connect to the default database. You MUST # configure these properly. # ------------------------------------------------------------------- database.default=default database.default.driver=org.hsql.jdbcDriver database.default.url=jdbc:HypersonicSQL:${webappRoot}/WEB-INF/db/jetspeed database.default.username=sa database.default.password= # The number of database connections to cache per ConnectionPool # instance (specified per database). database.default.maxConnections=5 # The amount of time (in milliseconds) that database connections will be # cached (specified per database). # # Default: one hour = 60 * 60 * 1000 database.default.expiryTime=3600000 # The amount of time (in milliseconds) a connection request will have to wait # before a time out occurs and an error is thrown. # # Default: ten seconds = 10 * 1000 database.connectionWaitTimeout=10000 # The interval (in milliseconds) between which the PoolBrokerService logs # the status of it's ConnectionPools. # # Default: No logging = 0 = 0 * 1000 database.logInterval=0 # Determines if the quantity column of the IDBroker's id_table should # be increased automatically if requests for ids reaches a high # volume. idbroker.cleverquantity=true