Table of Contents
Bold, italicized properties are very important and most likely must be changed from their defaults during installation.
Bold properties are likely to need modification during implementation.
All property files listed below are in buildsrc/main/properties resources within the KFS project.
...
Category
...
Default
...
Notes
...
Configuration Properties
...
(
...
kfs-default-config.properties)
Property | Default | Notes | |||
---|---|---|---|---|---|
| module.labor.distribution.enabled | true | Whether to include the configuration for the Labor Distribution, Budget Construction, and Effort Commitment Modules. (ld,bc,ec) | ||
| module.contracts.and.grants.enabled | true | Whether to include the configuration for the Contracts and Grants module. (cg) Only one of cg or kc can be set to true or both can be set to false. | ||
module.external.kuali.coeus.enabled | false | Whether to include the configuration for the Kuali Coeus integration. (kc) Only one of cg or kc can be set to true or both can be set to false. | |||
| module.accounts.receivable.enabled | true | Whether to include the configuration for the Accounts Receivable module. (ar) | ||
| module.purchasing.enabled | true | Whether to include the configuration for the Purchasing/Accounts Payable module. (purap) | ||
| module.capital.asset.enabled | true | Whether to include the configuration for the Capital Asset and Capital Asset Builder Modules. (cam,cab) | ||
| module.access.security.enabled | false | Whether to include the configuration for the Access Security module. (sec) This module overrides pieces of the coa, gl, ld, and purap modules. | ||
URLs |
|
|
| ||
| appserver.url | tells the build what the base URL is for the application server in which the application will be deployed | |||
| application.url | ${appserver.url}/${app.code}-${build.environment} | the base url of the application | ||
| cas.url | ${appserver.url}/cas | the base url for your CAS server | ||
| rice.url | (dynamic) | The base url for the rice struts module. This is set dynamically in build.xml based on the rice.standalone flag. If you are using any other application server besides the one containing KFS, you will need to set this in your kfs-build.properties. | ||
| externalizable.static.content.url | ${application.url}/static | the base url for static content like images and help that could reside within the application or be maintained by other group(s) on other server(s) | ||
| externalizable.help.url | ${externalizable.static.content.url}/help/ | the base url for help content | ||
| externalizable.images.url | ${externalizable.static.content.url}/images/ | the base url for images that can reside outside the application | ||
| externalizable.xml.url | ${externalizable.static.content.url}/xml/ | the base url for xml (xsd, xsl, etc.) related files that can reside outside the application | ||
kc.application.url | http://localhost:8080/kc-trunk | Kuali Coeus application server URL used for KFS/KC integration. | |||
Database |
|
|
| ||
mysql.ojb.platform | MySQL | The property value (for datasource.ojb.platform) which indicates a MySQL database | |||
oracle.ojb.platform | Oracle9i | The property value (for datasource.ojb.platform) which indicates an Oracle database | |||
| datasource.ojb.platform | ${oracle.ojb.platform} | used by the build to configure OJB and determine the appropriate driver and KualiDBPlatform implementations to use | ||
mysql.driver.class | com.mysql.jdbc.Driver | JDBC Driver class for the MySQL platform | |||
oracle.driver.class | oracle.jdbc.OracleDriver | JDBC Driver class for the Oracle platform | |||
p6spy.driver.class | com.p6spy.engine.spy.P6SpyDriver | JDBC Driver class when p6spy is enabled | |||
oracle.xa.datasource.class | oracle.jdbc.xa.client.OracleXADataSource | JDBC DataSource class for Oracle which supports XA distributed transactions | |||
mysql.xa.datasource.class | com.mysql.jdbc.jdbc2.optional.MysqlXADataSource | JDBC DataSource class for MySQL which supports XA distributed transactions | |||
non.xa.pool.datasource.class | bitronix.tm.resource.jdbc.lrc.LrcXADataSource | JDBC DataSource class for a non-XA JDBC resource emulating XA with Last Resource Commit | |||
mysql.server.datasource.platform | org.kuali.rice.core.framework.persistence.platform.MySQLDatabasePlatform | Rice class for handling Differences between database versions | |||
oracle.server.datasource.platform | org.kuali.rice.core.framework.persistence.platform.OracleDatabasePlatform | Rice class for handling Differences between database versions | |||
mysql.impex.admin.username | root | Admin user used for the impex db import portion of the db refresh when MySQL is the specified platform. This account will be used to create and destroy users and schemas, and for MySQL, must be an account with administrative privileges (such as root ). | |||
mysql.impex.admin.password | (unset) | Password for the above account. | |||
oracle.impex.admin.username | kuluser_admin | Admin user used for the impex db import portion of the db refresh when Oracle is the specified platform. This account will be used to create and destroy users and schemas and for Oracle, must have execute privilege on the KULUSER_MAINT_PK package owned by the account specified in the oracle.impex.tool.schema property. | |||
oracle.impex.admin.password | kuluser_admin | Password for the above account. | |||
oracle.impex.tool.schema | kulusermaint | Only used for Oracle imports. Account which contains the KULUSER_MAINT_PK package and has permissions to create and drop users and kill sessions. | |||
liquibase.logLevel | info | Default log level for the liquibase portion of the db refresh process. NOTE: In a local development environment info is much faster than debug. | |||
| datasource.username |
| account that the application should use to access the database | ||
| datasource.password |
| password for the application database account | ||
| ojb.persistencebroker.pool.maxactive | 200 | The maximum number of connections the persistence broker pool will handle. | ||
| datasource.maximum.cached.preparedstatements | commented out | currently commented out and unused specify the number of prepared statements cached per connection | ||
| datasource.connection.timeout | 100000 | used in datasource connections to close once they have been inactive for a period of time | ||
| transaction.timeout | ${datasource.connection.timeout} | used in datasource configuration to force transactions to timeout after they've run too long | ||
| datasource.validating.query | select 1 from dual | Query used to test the connection to the database. | ||
datasource.xapool.connection.test.mode | commented out | currently commented out and unused XAPool connection test mode: 0: no check, the connection is taken from the pool without any verification | |||
connection.pool.impl | XAPool | Specifies the implementation of the connection pool for the purpose of transaction management. Presently, the only supported value is "XAPool" (same as KFS 4.x) but other transaction managers will be added in future release of KFS and Rice. | |||
datasource.pool.maxActive | 50 | The maximum number of connections which can be checked out from the pool at any given time. Requests beyond this number will block until a connection is returned to the pool. | |||
datasource.pool.minIdle | 5 | The minimum number of connections that can remain idle in the pool, without extra ones being created. | |||
datasource.pool.initialSize | 5 | How many connections to open (per datasource) upon application startup. | |||
datasource.pool.maxSize | 50 | The maximum number of connections which the connection pool will maintain between the application server and the database. | |||
datasource.pool.minSize | 5 | The minimum number of connections which the connection pool will maintain between the application server and the database. | |||
datasource.pool.maxWait | 30000 | The number of milliseconds for which to wait for a connection slot to become available in the pool. After this time, the connection attempt will fail and throw an exception. | |||
datasource.btm.journal | null | Configure Bitronix logging; disabled with value of null. | |||
datasource.btm.transactionTimeout | 120 | Transactional Connection timeout in seconds. Recommendation for load testing: 120 | |||
Directories |
|
|
| ||
| base.directory | ${basedir.safe}/kuali | base directory during the build process to locate supporting files not in the KFS project (see below) | ||
| appserver.home | ${basedir.safe}/build/tomcat | determines where the build will look for your application server | ||
| external.config.directory | ${basedir.safe}/build/temp/opt | the base directory for external configuration files and work directories | ||
| tomcat.version | 6 | Changes the defaults for the appserver lib directory location, since there is a structural change between the versions. | ||
| appserver.lib.dir | ${appserver.home}/lib |
| ||
| appserver.classes.dir | ${appserver.home}/lib |
| ||
| appserver.deploy.dir | ${appserver.home}/webapps |
| ||
| appserver.config.dir | ${appserver.home}/conf |
| ||
| appserver.localhost.dir | ${appserver.config.dir}/Catalina/localhost |
| ||
| appserver.work.dir | ${appserver.home}/work/Catalina/localhost |
| ||
work.directory | work | Work directory (and subdirs below) | |||
source.directory | ${work.directory}/src | ||||
database.directory | ${work.directory}/db | ||||
impex.directory | ${database.directory}/kfs-db/db-impex | ||||
webroot.directory | ${work.directory}/web-root | ||||
webinf.directory | ${webroot.directory}/WEB-INF | ||||
tags.directory | ${webinf.directory}/tags | ||||
classes.directory | ${webinf.directory}/classes | ||||
lib.directory | ${webinf.directory}/lib | ||||
metainf.directory | ${webroot.directory}/META-INF | ||||
static.directory | ${webroot.directory}/static | ||||
help.directory | ${static.directory}/help | Directory for static help content. | |||
xsd.directory | ${static.directory}/xsd | Directory for static xsd content. | |||
test.infrastructure.source.directory=test/infrastructure/src | Test directories (for unit/integration tests) | ||||
test.unit.source.directory=test/unit/src | |||||
test.integration.source.directory=test/integration/src | |||||
test.lib.directory=test/lib | |||||
| base.security.directory | ${external.config.directory}/sa_forms/java | the directory where secure application property files are located (application server user must have read access) | ||
| base.settings.directory | ${external.config.directory}/j2ee | the directory that contains the non-secure property files that are nonetheless external to the deployed application (application server user must have read access) | ||
| base.logs.directory | ${external.config.directory}/logs | the directory for the log files output by the application (application server user must have write access) | ||
base.work.directory | ${external.config.directory}/work | the directory that is the root for the base working directory that is external to the application | |||
| security.directory | ${base.security.directory}/${build.environment}/kfs | the directory where secure application property files for a specific environment are located (application server user must have read access) | ||
| settings.directory | ${base.settings.directory}/${build.environment}/kfs | the directory that contains the non-secure property files for a specific environment that are nonetheless external to the deployed application (application server user must have read access) | ||
| logs.directory | ${base.logs.directory}/${build.environment}/kfs | the directory for the log files output by the application (application server user must have write access) | ||
| external.work.directory | ${external.config.directory}/work/${build.environment}/kfs | the base working directory that is external to the application (used for storage of attachments, batch input files, and generated reports - application server user must have read/write access to all subdirectories) | ||
| attachments.directory | ${external.work.directory}/attachments | the base working directory for storage of note-associated attachments that are uploaded by users | ||
| staging.directory | ${external.work.directory}/staging | the base working directory for storage of batch input files | ||
temp.directory | ${external.work.directory}/temp | a directory for temporary file storage, e.g. during pdf generation | |||
| reports.directory | ${external.work.directory}/reports | the base working directory for oltp and batch report generation | ||
build.directory | build | Build support file directories and subdirectories | |||
build.external.directory | ${build.directory}/external | ||||
build.appserver.directory | ${build.external.directory}/appserver | ||||
build.user.directory | ${build.external.directory}/user | ||||
build.work.directory | ${build.external.directory}/work | ||||
build.project.directory | ${build.directory}/project | ||||
licenses.directory | licenses | ||||
build.distribution.directory | ${build.directory}/distribution | ||||
build.distribution.licenses.directory | ${build.distribution.directory}/${licenses.directory} | ||||
build.server.lib.directory | ${build.directory}/server-lib | ||||
build.rice.lib.directory | ${build.directory}/rice-lib | ||||
build.kfs.lib.directory | ${build.directory}/kfs-lib | ||||
| drivers.directory | ${build.directory}/drivers | determines where the build will look for your database drivers | ||
all.temp.directory | ${build.directory}/temp | temp directory used by build | |||
war.directory | ${build.directory}/war | directory used for building war | |||
war.classes.directory | ${war.directory}/WEB-INF/classes | directory with classes to go into the war | |||
test.directory | ${build.directory}/test | Testing directories | |||
test.classes.directory | ${test.directory}/classes | ||||
test.xml.results.directory | ${test.directory}/xml | ||||
deployDir | ${build.directory} | ||||
test.html.results.directory | ${deployDir}/test | ||||
doc.directory | ${build.directory}/doc | javadoc directory | |||
dddoc.directory | ${build.directory}/doc-dd-tags | ||||
context.file | context.xml | various file name properties | |||
carol.file | carol.properties | ||||
security.file | security.properties | ||||
keystore.filename | rice.keystore | ||||
configuration.file | configuration.properties | ||||
p6spy.file | spy.properties | ||||
web.file | web.xml | ||||
spring.ide.support.file | .springBeans | ||||
ojb.properties.file | OJB.properties | ||||
ojb.logging.file | OJB-logging.properties | ||||
ojb.repository.file | OJB-repository.xml | ||||
| encrypt.attributes.properties.file | fieldsToEncrypt.properties | the file that lists the tables and columns that should be processed by the PostDataLoadEncryptionStep | ||
| security.property.file | ${security.directory}/${security.file} | the single secure property file currently used by the application | ||
keystore.file | ${security.directory}/${keystore.filename} | the single keystore file currently used by the KSB to authenticate services | |||
Rice Configuration |
|
|
| ||
| rice.standalone | false | Whether to configure KFS during the build process to run with an external Rice server instead of an embedded one (the default for development.) | ||
| deploy.local.rice.server | false | Whether to configure the local tomcat server with a Rice standalone instance. Used in conjunction with the | ||
| rice.url | (dynamic) | The base URL (http://host:port/context) for the standalone rice server. | ||
| rice.config.property.file | ${appserver.home}/conf/rice-config.xml | Where the Rice server will pull it's configuration information (URLs/DB connections/etc...). This is used to create the file during the build process. The default is a location that Rice naturally searches for configuration information. | ||
| rice.server.datasource.username | ${datasource.username} | jdbc username for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. | ||
| rice.server.datasource.password | ${datasource.password} | jdbc password for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. | ||
| rice.server.datasource.connection.timeout | ${datasource.connection.timeout} | jdbc connection timeout for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. | ||
| rice.server.datasource.validating.query | ${datasource.validating.query} | jdbc validating query for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. | ||
rice.server.datasource.maximum.cached.preparedstatements | ${datasource.maximum.cached.preparedstatements} | jdbc max cached prepared statements value for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. | |||
rice.custom.ojb.properties | ${ojb.properties.file} | Where, on the classpath, to pull the OJB properties file for the rice components | |||
rice.name | rice | Base Rice version properties | |||
kfs.rice.version | 2.1.6-rc2 | Due to release timing, the Rice version distributed with KFS 5.0.2 is 2.1.6-rc2. This is equivalent to the final Rice 2.1.6 release. | |||
rice.output.licenses.suffix | -licenses.zip | ||||
rice.server.war.file.name.prefix | ${rice.name}-web- | ||||
rice.server.war.file.name | ${rice.server.war.file.name.prefix}${kfs.rice.version}.war | ||||
rice.server.war.directory | ${build.appserver.directory} | ||||
rice.application | kr | ||||
kew.application | kew | ||||
ksb.application | ksb | ||||
kim.application | kim | ||||
| rice.ksb.url | ${application.url}/${ksb.application} | the base url for the service bus struts module | ||
| rice.ksb.http.url.expression | (blank) |
| ||
| keystore.alias | rice |
| ||
| keystore.password | r1c3pw | Password used to open the keystore. | ||
| encryption.key | 7IC64w6ksLU | Used by the DemostrationGradeEncryptionService to encrypt / decrypt data in the database Not that anyone should be using the default key provided by the foundation, but if you are, the value of this property has been changed to account for a change in the cryptography library. If you have any data in your database encrypted with the old key value from KFS 4.1.1, you will need to update your security.properties with the new value in rice.properties. | ||
| rice.enable.nonproduction.data.unmasking | false | Specifies whether data can be unmasked in non-production environments. Can be used to prevent access to sensitive data if loaded into a test environment. | ||
rice.kew.enableKENNotification | false | determines if notifications coming out of KEW should be forwarded to KEN | |||
| rice.struts.config.files | /${rice.application}/WEB-INF/struts-config.xml | the files that define the struts context for the rice struts module | ||
| rice.kns.struts.config.files | /${rice.application}/WEB-INF/struts-config.xml | the files that define the struts context for the kns struts module | ||
| rice.kew.struts.config.files | /${kew.application}/WEB-INF/struts-config.xml | the files that define the struts context for the workflow struts module | ||
rice.kew.log4j.settings.path | ${log4j.settings.file} | the path to the file containing the log4j configuration for workflow | |||
| rice.ksb.struts.config.files | /${ksb.application}/WEB-INF/struts-config.xml | the files that define the struts context for the ksb struts module | ||
| rice.kim.struts.config.files | /${kim.application}/WEB-INF/struts-config.xml | the files that define the struts context for the kim struts module | ||
| rice.kew.attachment.directory | ${attachments.directory} | the directory where attachments uploaded through the workflow ui are stored | ||
| rice.kew.xml.directory | ${staging.directory}/workflow | the directory where the xml files that define your workflow data should be stored when they are uploaded | ||
| rice.kew.xml.poll.interval.secs | 30 | the frequency with which workflow checks for new files in the xml directory | ||
| rice.kew.xml.initial.delay.secs | 60 | the length of time workflow waits to do the first check of the xml directory when the application starts up | ||
rice.kew.actionlist.outbox | false | globally disable or enable the outbox (screen to which there is a link in the action list that shows the documents a user has taken action on) | |||
rice.kew.ignoreUnknownPrincipalIds | true | If false, KEW will fail (throw to exception) documents with invalid principals in their route actions | |||
rice.kew.secure.workflowdocument.javaservice.endpoint | true | Rice web service configuration | |||
rice.kew.secure.workflowutility.javaservice.endpoint | true | ||||
rice.kew.simpleDocumentActionsService.security | true | ||||
rice.kew.secure.workflowutility.soapservice.endpoint | true | ||||
rice.kim.soapExposedService.jaxws.security | true | ||||
rice.kim.identityArchiveServiceImpl.executionIntervalSeconds | 600 | Identity Archive Service settings | |||
rice.kim.identityArchiveServiceImpl.maxWriteQueueSize | 300 | ||||
| rice.ksb.message.delivery | async | determines whether the workflow processes that would normally be performed asynchronously are asynchronous (async) or are synchronous instead (sync) | ||
| rice.ksb.route.queue.max.retry.attempts | 3 | how many times the service bus will try to send a message when it is encountering an exception that may be due to a resource outage, for example | ||
| rice.ksb.route.queue.time.increment | 1000 | the length of time the service bus will wait before retrying after each failed attempt to send a message | ||
| rice.ksb.thread.pool.size | 20 | the number of threads available to process service bus messages, i.e. deal with queued workflow documents | ||
rice.ksb.bus.refresh.rate.seconds | 120 | the number of seconds between each "ping" of the service bus to see what services are currently available | |||
rice.cxf.client.connectionTimeout | 30000 | CXF client settings | |||
rice.cxf.client.receiveTimeout | 120000 | ||||
rice.cxf.client.allowChunking | false | ||||
| rice.ksb.batch.mode | false | Set to true to prevent the application from publishing the services to a master service bus. For use on application configurations that should not receive service calls from other applications. (batch jobs and unit tests) | ||
| rice.kim.cache.*.max.size | 3000 | The maximum number of items which can be in one of the KIM memory caches. | ||
| rice.kim.cache.*.max.age.seconds | (varies) | How long after adding that an item in the cache will be considered invalid. | ||
rice.org.kuali.rice.kim.bo.ui.PersonDocumentEmploymentInfo.hidden | baseSalaryAmount | KIM hidden fields | |||
rice.kim.hide.PersonDocumentAddress.type | HM | ||||
rice.kim.hide.PersonDocumentPhone.type | HM | ||||
rice.kim.show.blank.qualifiers | true | ||||
| rice.kns.cache.parameter.max.size | 1000 | The maximum number of items in the System parameter cache. | ||
| rice.kns.cache.parameter.max.age.seconds | 3600 | How long after adding that an item in the cache will be considered invalid. | ||
| rice.kns.cache.nonDatabaseComponent.max.size | 2000 | The maximum number of items in the cache of non-database components used by the parameter service. | ||
| rice.kns.cache.nonDatabaseComponent.max.age.seconds | 3600 | How long after adding that an item in the cache will be considered invalid. | ||
| rice.kns.cache.methodresult.max.size | 1000 | The maximum number of items in the method result cache used for some service calls. | ||
| rice.kns.cache.methodresult.max.age.seconds | 60 | How long after adding that an item in the cache will be considered invalid. | ||
| rice.kns.cache.methodresult.nocopy.max.size | 1000 | The maximum number of items in the method result cache used for some service calls. | ||
| rice.kns.cache.methodresult.nocopy.max.age.seconds | 600 | How long after adding that an item in the cache will be considered invalid. | ||
| rice.kns.session.document.cache.size | 1000 | Number of session documents which will be kept in memory at one time. Above this, they are purged and reloaded from a persistent database store as needed. | ||
rice.kim.cache.permission.refresh.period.seconds | 3600 | ||||
rice.kim.cache.role.refresh.period.seconds | 3600 | ||||
rice.kew.email.reminder.lifecycle.enabled | false | properties for Action List notification | |||
rice.kew.mail.smtp.host | ${mail.relay.server} | ||||
rice.kew.mail.transport.protocol | ${mail.transport.protocol} | ||||
| rice.kew.daily.email | false | turn on/off daily workflow notifications | ||
| rice.kew.weekly.email | false | turn on/off weekly workflow notifications | ||
| rice.kew.daily.email.cron.expression | 0 0 1 * * ? | the cron expression defining when daily emails will be sent (default to 1AM every day) | ||
| rice.kew.weekly.email.cron.expression | 0 0 2 ? * 2 | the cron expression defining when daily emails will be sent (default to 2AM every Monday) | ||
classpath.resource.prefix | /WEB-INF/classes/ | Needed by DWR | |||
validate.data.dictionary | true | whether to validate the DD upon startup | |||
validate.ebo.references | true | ||||
Logging |
|
|
| ||
| log4j.file | log4j.properties | the name of the log4j settings file | ||
| log4j.settings.file | ${settings.directory}/${log4j.file} | The file the server will look for to configure log4j | ||
| appenders | INFO, LogFile, StdOut | this property determines what log statements will be printed by default and whether the logs go to the log file or standard out (By default, this one is set dynamically in build.xml) | ||
| memory.monitor.threshold | .85 | determines when the MemoryMonitor considers the application to have exceeded reasonable memory usage (decimal represents percentage of tenured allocation) | ||
| log4j.reload.minutes | 5 | determines how frequently the logging framework (Log4jConfigurer) will check for changes to log4j.properties | ||
| periodic.thread.dump | true | turns on a background process which logs the current thread state of the application to disk | ||
| periodic.thread.dump.seconds | 300 | the number of seconds between dumps | ||
| use.p6spy | false | this property can be used to turn on logging of the SQL generated and executed by the application by intercepting the JDBC driver | ||
Batch |
|
|
| ||
| use.quartz.scheduling | true | determines whether quartz (SchedulerService and scheduleJob) should be used for batch job scheduling and execution - impacts whether the batch scheduling ui works | ||
| use.quartz.jdbc.jobstore | (dynamic) | This property will be set dynamically by the build script, but you can force it by setting it in your kfs-build.properties file. | ||
| batch.schedule.cron.expression | 00 00 23 ? * * | the Quartz cron expression for the scheduleJobTrigger (in KualiSpringBeansKfs.xml), i.e. when should the standard batch schedule run | ||
| batch.mailing.list | (unset) | from email address for mail sent by the batch framework (JobListener and other) | ||
Spring Configuration |
|
|
| ||
| core.spring.source.files | \ | the files that define the spring context for the application - note that further configuration files may be specified in the module definitions Note: All of the resources which are retrieved by Spring (*.spring.source.files and *.spring.files) should now use an URI-style designation rather than just listing the path. Changes in underlying frameworks have made the use of paths without a scheme ambiguous. (E.g., is org/kuali/kfs/sys/spring-sys.xml a file system path, and if so, what is the base path in which it should be resolved?) Instead, all properties like that above should explicitly state how they are to be found. E.g., classpath:org/kuali/kfs/sys/spring-sys.xml | ||
| access.security.core.spring.files | ,classpath:org/kuali/kfs/sec/spring-sec.xml\ |
| ||
| access.security.ld.spring.files | ,classpath:org/kuali/kfs/module/ld/spring-sec-ld-overrides.xml |
| ||
| access.security.purap.spring.files | ,classpath:org/kuali/kfs/module/purap/spring-sec-purap-overrides.xml |
| ||
| integration.spring.files | ,classpath:org/kuali/kfs/integration/spring-integration.xml | Core spring file containing the empty module definitions for the optional modules. These definitions are overridden if the module implementation definitions are included. (via the files below) | ||
| endowment.spring.files | ,classpath:org/kuali/kfs/module/endow/spring-endow.xml |
| ||
| capital.asset.spring.files | ,classpath:org/kuali/kfs/module/cam/spring-cam.xml\ |
| ||
| accounts.receivable.spring.files | ,classpath:org/kuali/kfs/module/ar/spring-ar.xml |
| ||
| purchasing.spring.files | ,classpath:org/kuali/kfs/module/purap/spring-purap.xml |
| ||
| contracts.and.grants.spring.files | ,classpath:org/kuali/kfs/module/cg/spring-cg.xml |
| ||
kuali.coeus.spring.files | ,classpath:org/kuali/kfs/module/external/kc/spring-kc.xml | ||||
| labor.distribution.spring.files | ,classpath:org/kuali/kfs/module/ld/spring-ld.xml\ |
| ||
optional.module.spring.source.files | (dynamic) | Commented out - in the base distribution, this property is generated by build.xml | |||
| batch.spring.files | ,classpath:spring-kfs-batch.xml |
| ||
| institution.spring.source.files | (blank) | the institution specific files that define the spring context for the application | ||
| spring.source.files | (dynamic) | This is dynamically built from the above properties based on the enabled module flags. (See top of this chart.) | ||
kfs.krad.override.spring.files | classpath:spring-rice-krad-overrides.xml | List of Spring configuration files which should be injected into the KRAD/KR module of the Rice portion of the application. | |||
| access.security.krad.override.spring.files | ,classpath:org/kuali/kfs/sec/spring-sec-rice-overrides.xml |
| ||
krad.override.spring.files | (dynamic) | This is set dynamically in build.xml from the two properties above. | |||
core.override.spring.files | (blank) | This and the *.override.spring.files below can be used to inject custom versions of services into the specified Rice module. | |||
coreservice.override.spring.files | (blank) | ||||
kim.override.spring.files | (blank) | ||||
kew.override.spring.files | (blank) | ||||
ksb.override.spring.files | (blank) | ||||
location.override.spring.files | (blank) | ||||
| core.spring.test.files | classpath:org/kuali/kfs/sys/spring-test-env-beans.xml,\ | the core files that are included in the application spring context for unit testing | ||
optional.module.spring.test.files | (dynamic) | Commented out - in the base distribution, this property is generated by build.xml | |||
| endowment.spring.test.files | ,classpath:org/kuali/kfs/module/endow/spring-endow-test.xml |
| ||
| capital.asset.spring.test.files | ,classpath:org/kuali/kfs/module/cam/spring-cam-test.xml |
| ||
| accounts.receivable.spring.test.files | ,classpath:org/kuali/kfs/module/ar/spring-ar-test.xml,classpath:org/kuali/kfs/module/ar/spring-test-env-beans.xml |
| ||
| purchasing.spring.test.files | ,classpath:org/kuali/kfs/module/purap/spring-purap-test.xml,classpath:org/kuali/kfs/module/purap/spring-test-env-beans.xml |
| ||
| contracts.and.grants.spring.test.files | (blank) |
| ||
| labor.distribution.spring.test.files | (blank) |
| ||
| institution.spring.test.files | (blank) | the institution specific files that are included in the application spring context for unit testing | ||
| spring.test.files | (dynamic) | This is dynamically built from the above properties based on the enabled module flags. (See top of this chart.) | ||
Web Configuration |
|
|
| ||
| http.session.timeout.minutes | 15 | Value for the <session-timeout> parameter in web.xml. | ||
| core.struts.config.files | /WEB-INF/struts-config.xml | the core files that define the struts context for the application | ||
| core.rice.struts.message.resources | \ | Resources used by the Rice server portion of the framework | ||
optional.module.rice.struts.message.resources | org.kuali.kfs.module.ar.ar-resources,\ | Optional Module Message Resources | |||
| core.javascript.files | krad/plugins/jquery/jquery-1.6.3.js,\ | the core javascript files that should be available to every page in the application | ||
| core.portal.javascript.files | krad/plugins/jquery/jquery-1.6.3.js,\ | the javascript files that should be available to the portal | ||
| core.css.files | kr/css/kuali.css,kr/scripts/jscalendar-1.0/calendar-win2k-1.css | the core css files that should be available to every page in the application | ||
| core.portal.css.files | css/portal.css | the css files that should be available to the portal | ||
javamelody.system.actions.enabled | false | Use for JavaMelody monitoring configuration. This parameter enables or disables the system actions garbage collector, http sessions, heap dump, memory histogram, process list, jndi tree, opened jdbc connections, database (near the bottom of reports). These actions have confirmations when necessary. | |||
monitoring.filter.definitions | \ | Use for JavaMelody monitoring configuration. | authentication.filter.definition | <filter>\ | Web Authentication; the value of this property will be included in the filter section of web.xml|
authentication.filter.mappings | <filter-mapping>\ | The value of this property will be included in the filter mapping section of web.xml | |||
| institution.struts.config.files |
| the institution specific files that define the struts context for the application | ||
| institution.rice.struts.message.resources | (blank) | the institution specific files containing user messages that will be displayed via struts tags in jsps | ||
| institution.jstl.constants.classnames | (blank) | Unused and deprecated | ||
| institution.javascript.files | (blank) | the institution specific javascript files that should be available to every page in the application | ||
| institution.portal.javascript.files | (blank) |
| ||
| institution.css.files |
| the institution specific css files that should be available to every page in the application | ||
| institution.portal.css.files | (blank) | the css files that should be available to the portal | ||
| struts.config.files | ${core.struts.config.files} | all the files that define the struts context for the application | ||
| rice.struts.message.resources | ${core.rice.struts.message.resources} | all the files containing user messages that will be displayed via struts tags in jsps | ||
| jstl.constants.classnames | ${core.jstl.constants.classnames} | Unused and deprecated | ||
| javascript.files | ${core.javascript.files} | all the javascript files that should be available to every page in the application | ||
| portal.javascript.files | ${core.portal.javascript.files} | the javascript files that should be available to the portal | ||
| css.files | ${core.css.files}${institution.css.files} | all the css files that should be available to every page in the application | ||
| portal.css.files | ${core.portal.css.files}${institution.portal.css.files} | the css files that should be available to the portal | ||
Mail |
|
|
| ||
| mail.relay.server |
| determines the SMTP server used by MailService | ||
| mail.transport.protocol | smtp | If your mail server only accepts SSL connections, change this to "smtps" | ||
| batch.mailing.list |
| from email address for mail sent by the batch framework (JobListener and other) and to email address for job failure messages | ||
| incident.mailing.list |
| to/from email address for mail sent by the incident reporting framework (KualiExceptionIncident, etc.) | ||
Miscellaneous Configuration |
|
|
| ||
application.id | KFS | Used to identify the application as KFS on the Kuali service bus. This value is used when there are multiple nodes (servers) running KFS so that they are recognized as the same system to the KSB. | |||
app.code | kfs | Prefix used for building the application context. | |||
kfs.version | 5.0.2 | Current version of the KFS application. Do not change. This will be used when publishing services to the KSB. | |||
kfs.service.namespace.uri | http://kfs.kuali.org/kfs/v5_0 | Namespace for KFS services on the Kuali Service Bus. DO NOT CHANGE UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING! | |||
kc-kfs.kfs.service.namespace.uri | http://kfs.kuali.org/kc-kfs/v2_0 | Namespace for KFS KC-KFS integration services on the Kuali Service Bus. DO NOT CHANGE UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING! | |||
kuali.coeus.integration.bus.security.enabled | false | Used to determine whether bus security is enabled for KFS / KC integration when using a shared Rice instance. | |||
bootstrap.spring.file | classpath:kfs-startup.xml | The Spring context file that should be loaded first. | |||
| is.local.build | (unset) | this property determines whether the build will do a local deployment or package for a deployment on the test node (value does not matter - only tested for existence) | ||
| is.clustered | false | When true, adds the <distributable /> tag to web.xml. | ||
| build.environment | dev | this is the kuali and workflow environment | ||
| production.environment.code | prd | determines what | ||
| tests.includes | **/*Test.java | this property determines what tests are included when the test target is executed | ||
| core.property.files | \ | The core configuration property files that should be available in the ConfigurationService context. In KFS 5.x, this property's contents were changed to reflect that each module has a property file rather than all modules' properties in a single ApplicationResources.properties file. If you have overridden this property in KFS 4.x, you will want to move your new file references to the institution.property.files property. | ||
optional.module.property.files | ,classpath:org/kuali/kfs/module/ar/ar-resources.properties,\ | Since the property files were broken out in KFS 5.x, this property was created to hold the references to the various optional module property files. | |||
| institution.property.files | (blank) | the institution specific configuration property files that should be available in the ConfigurationService context | ||
| property.files | ${core.property.files}${optional.module.property.files}${institution.property.files} | all the configuration property files that should be available in the ConfigurationService context, along with configuration.properties | ||
| core.property.test.files | classpath:test-configuration.properties | the core configuration property files that should be added to the ConfigurationService context for unit testing | ||
optional.module.property.test.files | (blank) | the optional configuration property files that should be added to the ConfigurationService context for unit testing | |||
| institution.property.test.files | (blank) | the institution specific configuration property files that should be added to the ConfigurationService context for unit testing | ||
| property.test.files | ${core.property.test.files}${optional.module.property.test.files}${institution.property.test.files} | all the configuration property files that should be added to the ConfigurationService context for unit testing | ||
| institutional.configuration.file | (blank) | to add additional properties to the configuration.properties file that is deployed with the application. It will be tokenized using the same properties available to | ||
| custom.context.content | (blank) | allows insertion of custom content into the tomcat context file | ||
| institution.source.directory | (unset) | If this variable is set, code from that path will be compiled into the main war.classes.directory | ||
| institution.lib.directory | (unset) | if this property is set, the build will copy files from this location into the project lib directory and to the server war | ||
| institution.test.source.directory | (unset) |
| ||
| institution.test.lib.directory | (unset) |
| ||
| institution.web.content.directory | (unset) | Location of another source of web content. If set, it will be overlaid on top of the baseline files in the | ||
feedback.link.url | (unset) | URL for the feedback link that can be a way for users to provide feedback, report issues, etc. | |||
licensing.contact.email | (unset) | ||||
step.status.check.interval | 10 | Unused and depracated batch container setting | |||
kfs.ehcache.config.location | classpath:kfs.ehcache.xml | Location of the configuration file for the EHCache settings for KFS objects. | |||
kim.callback.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
kew.callback.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
cache.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
soap.service.default.service.bus.security.enabled | false | Kuali Service Bus implementation parameter | |||
tests.non.java.resources | ${non.java.resources},\ | Non-Java files that should be included in the classpath for unit testing. | |||
accountCreationServiceSOAP.expose | false | This will either enable or disable the KC web-service used to create a CG account. Used in conjunction with other KFS/KC integration parameters. | |||
rice.lib.jars.to.exclude | **/log4j*,\ | These are JAR files which we want to exclude from the Rice project because they either:
| |||
runtime.only.jars | abdera*.jar,\ | These are libraries which should not be referenced in KFS code. They need to be there for runtime testing, but their classes should not be referenced in KFS code.app.code | kfs | Prefix used for building the application context. | |
app.context.name | ${app.code}-${environment} | The app context which will be used to deploy the application. | |||
application.id | KFS | Used to identify the application as KFS on the Kuali service bus. This value is used when there are multiple nodes (servers) running KFS so that they are recognized as the same system to the KSB. | |||
application.url | ${base.url}/${app.context.name} | The base url of the application. | |||
b2b.environment | The environment to pass to the B2B service. | ||||
b2b.punch.back.action.forwarding.url | /portal.do?channelTitle=Requisition&channelUrl=purapRequisition.do?methodToCall=displayB2BRequisition | The URL within KFS that the B2B system should redirect to, so it can start an order. | |||
b2b.punch.back.url | The URL where the B2B system should punch back. | ||||
b2b.punch.out.url | The URL within the B2B system where the Shop Catalogs button should redirect. | ||||
b2b.purchase.order.url | The URL where approved purchase orders should be sent to actually accomplish the order. | ||||
b2b.user.agent | kfs | The user agent of the B2B integration. | |||
base.directory | \${user.home}/kuali/${project.artifactId} | Base directory during the build process to locate supporting files not in the KFS project. | |||
base.url | http://localhost:8080 | The base URL that the application is being deployed to. | |||
batch.file.lookup.root.directories | ${staging.directory};${reports.directory} | A list of parent directories to display the full contents of on the Batch File screen. | |||
batch.quartz.thread.pool.size | 8 | The number of threads Quartz uses while executing jobs. | |||
batch.schedule.cron.expression | 00 00 23 ? * * | The Quartz cron expression for the scheduleJobTrigger (in KualiSpringBeansKfs.xml), i.e. when should the standard batch schedule run. | |||
cache.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
context.names.rice | ${rice.application}-${environment} | The application portion of the url where Rice functionality can be engaged. | |||
contracts.grants.billing.enabled | false | Whether to include the configuration for the extra Contracts & Grants Billing functionality. | |||
current.year | 2015 | The year which is shown in the copyright section of the Rice portal. | |||
datasource.driver | com.mysql.jdbc.Driver | The class name of the JDBC driver to use for this application deployment. | |||
datasource.ojb.platform | MySQL | Used by the build to configure OJB and determine the appropriate driver and KualiDBPlatform implementations to use | |||
datasource.pool.class | The class to use for the JDBC connection pool. If empty, the underlying JDBC connection pool/transaction implementation will be responsible for providing. | ||||
directoriesToCreateOnStartup | ${attachments.directory}, ${attachments.pending.directory}, ${staging.directory.sys.batchContainer}, ${temp.directory},${data.xml.root.location}, | A list of directories which should be created on application startup, if they do not currently exist. | |||
environment | dev | The name of the specific environment to deploy. | |||
externalizable.static.content.url | ${application.url}/static | The base url for static content like images and help that could reside within the application or be maintained by other group(s) on other server(s). | |||
feedback.link.url | URL for the feedback link that can be a way for users to provide feedback, report issues, etc. | ||||
http.session.timeout.minutes | 90 | Value for the <session-timeout> parameter in web.xml. | |||
kc-kfs.kfs.service.namespace.uri | http://kfs.kuali.org/kc-kfs/v2_0 | Namespace for KFS KC-KFS integration services on the Kuali Service Bus. Changing this value is discouraged, as it may lead to functionality not being able to find services published by Kuali Coeus on the KSB. | |||
kc.application.url | Kuali Coeus application server URL used for KFS/KC integration. | ||||
kew.callback.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
kfs.datasource.connection.timeout | 100000 | The number of milliseconds to wait to connect to the KFS database. | |||
kfs.datasource.driver.name | ${datasource.driver} | The class name of the JDBC driver to use to contact the KFS database. | |||
kfs.datasource.pool.accessToUnderlyingConnectionAllowed | true | Determines whether manipulation of the underlying JDBC connection to the KFS database is allowed by the application. | |||
kfs.datasource.pool.initialSize | 5 | The initial size of the database connection pool for the KFS database. | |||
kfs.datasource.pool.maxActive | 50 | The maximum number of active connections allowed to the KFS database. | |||
kfs.datasource.pool.maxSize | 50 | The maximum number of connections - idle or active - allowed to the KFS database. | |||
kfs.datasource.pool.maxWait | 30000 | The number of milliseconds a connection will wait while running a query or update against the KFS database. | |||
kfs.datasource.pool.minIdle | 5 | The minimum number of idle connections allowed to the KFS database. | |||
kfs.datasource.pool.minSize | 5 | The minimum number of connections - idle or active - allowed to the KFS database. | |||
kfs.datasource.validating.query | select 1 from dual | The simple query to run against the KFS database to confirm a heartbeat. | |||
kfs.ehcache.config.location | classpath:kfs.ehcache.xml | Location of the configuration file for the EHCache settings for KFS objects. | |||
kfs.externalizable.help.url | ${externalizable.static.content.url}/help/ | The base url for help content, referred to from workflow documentation. | |||
kfs.locale | en_US | The name of the java.util.Locale to use for this deployment of KFS. | |||
kfs.service.namespace.uri | http://kfs.kuali.org/kfs/v5_0 | Namespace for KFS services on the Kuali Service Bus. Changing this value is discouraged, as it may lead to functionality not being able to find services published on the KSB. | |||
kfs.url | ${base.url}/${app.context.name} | The url which has the SessionInactivatePage.do to redirect to when a session times out. | |||
kfs.version | ${version} | Current version of the KFS application, derived from the project.version property set in the Maven POM. Changing is discouraged, as this value is used when publishing services to the KSB. | |||
kim.callback.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
ksb.client.url | ${application.url}/ksb | The URL endpoint of the KSB client. | |||
ksb.server.url | ${rice.server.url}/ksb | The URL endpoint of the KSB server. | |||
kuali.coeus.integration.bus.security.enabled | false | Used to determine whether bus security is enabled for KFS / KC integration when using a shared Rice instance. | |||
licensing.contact.email | info@kuali.co | The e-mail address to contact regarding licensing issues. | |||
log4j.reload.minutes | 5 | Determines how frequently the logging framework (Log4jConfigurer) will check for changes to log4j.properties. | |||
log4j.settings.file | The file the server will look for to configure log4j | ||||
logs.directory | ${base.directory}/logs/${environment}/${app.code} | The directory for the log files output by the application (application server user must have write access) | |||
mail.smtp.connectiontimeout | 10000 | The amount of time to wait while contacting an e-mail server. | |||
mail.smtp.timeout | 10000 | The amount of time to wait while attempting to send an e-mail message. | |||
message.queue.url | MessageQueue.do | The Rice web page which displays the current KSB message queue. | |||
module.access.security.enabled | false | Whether to include the configuration for the Access Security module. (sec) This module overrides pieces of the coa, gl, ld, and purap modules. | |||
module.accounts.receivable.enabled | true | Whether to include the configuration for the Accounts Receivable module. | |||
module.capital.asset.enabled | true | Whether to include the configuration for the Capital Asset and Capital Asset Builder Modules. | |||
module.contracts.and.grants.enabled | true | Whether to include the configuration for the Contracts and Grants module. (cg) Only one of cg or kc can be set to true or both can be set to false. | |||
module.external.kuali.coeus.enabled | false | Whether to include the configuration for the Kuali Coeus integration. (kc) Only one of cg or kc can be set to true or both can be set to false. | |||
module.labor.distribution.enabled | true | Whether to include the configuration for the Labor Distribution module. | |||
module.purchasing.enabled | true | Whether to include the configuration for the Purchasing/Accounts Payable module | |||
module.travel.enabled | true | Whether to include the configuration for the Travel and Entertainment Module. | |||
periodic.thread.dump | true | Turns on a background process which logs the current thread state of the application to disk. | |||
periodic.thread.dump.seconds | 300 | The number of seconds in between loggings of full thread dumps. | |||
production.environment.code | prd | Determines which build.environment the ConfigurationService considers to be the production environment | |||
project.build.timestamp | ${project.build.timestamp} | The timestamp when the project was built, which is displayed on every page with the version. | |||
property.files | classpath:org/kuali/rice/krad/ApplicationResources.properties, classpath:org/kuali/rice/krad/KRAD-ApplicationResources.properties, classpath:org/kuali/rice/kew/ApplicationResources.properties, classpath:org/kuali/rice/ksb/ApplicationResources.properties, classpath:org/kuali/rice/kim/ApplicationResources.properties, classpath:org/kuali/rice/krms/ApplicationResources.properties, classpath:org/kuali/rice/core/web/cache/CacheApplicationResources.properties, classpath:org/kuali/kfs/coa/coa-resources.properties, classpath:org/kuali/kfs/fp/fp-resources.properties, classpath:org/kuali/kfs/gl/gl-resources.properties, classpath:org/kuali/kfs/pdp/pdp-resources.properties, classpath:org/kuali/kfs/sys/sys-resources.properties, classpath:org/kuali/kfs/sec/sec-resources.properties, classpath:org/kuali/kfs/vnd/vnd-resources.properties, classpath:org/kuali/kfs/module/ar/ar-resources.properties, classpath:org/kuali/kfs/module/bc/bc-resources.properties, classpath:org/kuali/kfs/module/cab/cab-resources.properties, classpath:org/kuali/kfs/module/cam/cam-resources.properties, classpath:org/kuali/kfs/module/cg/cg-resources.properties, classpath:org/kuali/kfs/module/ec/ec-resources.properties, classpath:org/kuali/kfs/module/ld/ld-resources.properties, classpath:org/kuali/kfs/module/tem/tem-resources.properties, classpath:org/kuali/kfs/module/external/kc/kc-resources.properties, classpath:org/kuali/kfs/module/purap/purap-resources.properties | All files which have properties to be made available through org.kuali.rice.core.api.config.property.ConfigurationService, including the properties listed on this page and system messages. | |||
property.test.files | classpath:test-configuration.properties | A list of properties files (which may include overrides) to be used with unit tests. | |||
report.writer.service.new.line.characters | \n | The character which text reports should use as a new line character. | |||
reports.directory | ${work.directory}/reports | The base working directory for oltp and batch report generation | |||
rice.application | kr | The name of the base rice application. | |||
rice.datasource.connection.timeout | 100000 | The number of milliseconds to wait to connect to the Rice database. | |||
rice.datasource.driver.name | ${datasource.driver} | The class name of the JDBC driver to use to contact the Rice database. | |||
rice.datasource.pool.maxSize | 50 | The maximum number of connections - idle or active - allowed to the Rice database. | |||
rice.datasource.pool.maxWait | 30000 | The number of milliseconds a connection will wait while running a query or update against the Rice database. | |||
rice.datasource.pool.minSize | 5 | The minimum number of connections - idle or active - allowed to the Rice database. | |||
rice.datasource.validating.query | select 1 from dual | The simple query to run against the Rice database to confirm a heartbeat. | |||
rice.server.url | ${application.url} | The base url of the server where the Rice application has been deployed. | |||
security.property.file | The single secure property file currently used by the application. | ||||
service.registry.url | ServiceRegistry.do | The Rice web page which displays all services currently registered with the KSB. | |||
skip.batch.directory.initiation | false | Determines if the files listed in directoriesToCreate should be created when the application starts up or not. | |||
soap.service.default.service.bus.security.enabled | true | Kuali Service Bus implementation parameter | |||
spring.source.files | classpath:spring-kfs-imported-rice-beans.xml, classpath:spring-additional-rice-beans.xml, classpath:org/kuali/rice/core/CommonSpringBeans.xml, classpath:kfs-cache-config.xml, classpath:org/kuali/kfs/sys/spring-sys.xml, classpath:org/kuali/kfs/coa/spring-coa.xml, classpath:org/kuali/kfs/fp/spring-fp.xml, classpath:org/kuali/kfs/gl/spring-gl.xml, classpath:org/kuali/kfs/pdp/spring-pdp.xml, classpath:org/kuali/kfs/vnd/spring-vnd.xml, classpath:spring-kfs-batch.xml,classpath:org/kuali/kfs/sec/spring-sec.xml, classpath:org/kuali/kfs/sec/spring-sec-gl-overrides.xml, classpath:org/kuali/kfs/integration/spring-integration.xml, classpath:org/kuali/kfs/module/cg/spring-cg.xml, classpath:org/kuali/kfs/module/ar/spring-ar.xml, classpath:org/kuali/kfs/module/purap/spring-purap.xml, classpath:org/kuali/kfs/module/purap/spring-sec-purap-overrides.xml, classpath:org/kuali/kfs/module/cam/spring-cam.xml, classpath:org/kuali/kfs/module/cab/spring-cab.xml, classpath:org/kuali/kfs/module/ld/spring-ld.xml, classpath:org/kuali/kfs/module/bc/spring-bc.xml, classpath:org/kuali/kfs/module/ec/spring-ec.xml, classpath:org/kuali/kfs/module/ld/spring-sec-ld-overrides.xml, classpath:org/kuali/kfs/module/tem/spring-tem.xml | The list of Spring bean definition files for KFS. | |||
spring.test.files | classpath:org/kuali/kfs/sys/spring-test-env-beans.xml, classpath:org/kuali/kfs/sys/spring-sys-unit-test.xml, classpath:org/kuali/kfs/sys/spring-sys-test.xml, classpath:org/kuali/kfs/gl/spring-gl-test.xml, classpath:org/kuali/kfs/module/ar/spring-ar-test.xml, classpath:org/kuali/kfs/module/ar/spring-test-env-beans.xml, classpath:org/kuali/kfs/module/purap/spring-purap-test.xml, classpath:org/kuali/kfs/module/purap/spring-test-env-beans.xml, classpath:org/kuali/kfs/module/cam/spring-cam-test.xml, classpath:org/kuali/kfs/module/tem/spring-tem-test.xml | A list of Spring bean definition files for KFS unit tests. | |||
staging.directory | ${work.directory}/staging | The base working directory for storage of batch input files | |||
staging.directory.sys.batchContainer | ${staging.directory}/sys/batchContainer | The directory where batch container trigger files are placed and read. | |||
temp.directory | ${work.directory}/temp | A directory for temporary file storage, e.g. during pdf generation | |||
templates.directory | ${work.directory}/templates | A list of parent directories where PDF templates may be found. Currently, only used by Contacts & Grants Billing. | |||
thread.pool.url | ThreadPool.do | The Rice web page which displays information about the KSB thread pool. | |||
transaction.timeout | 100000 | Used in datasource configuration to force transactions to timeout if they have run for a problematic period of time. | |||
travel.reimbursement.initiatelink.enabled | false | Determines if travel reimbursements may be created without an originating travel authorization. | |||
use.quartz.jdbc.jobstore | false | This property will be set dynamically by the build script, but you can force it by setting it in your kfs-build.properties file. Avoid confusing with use.quartz.database, which is used by the KSB quartz scheduler. | |||
use.quartz.scheduling | true | Determines whether quartz (SchedulerService and scheduleJob) should be used for batch job scheduling and execution - impacts whether the batch scheduling UI works. | |||
version | ${kfs.version} | A synonym for kfs.version. | |||
work.directory | ${base.directory}/work/${environment}/${app.code} | The directory that is the root for the base working directory that is external to the application |
Rice Configuration Properties (kfs-rice-default-config.properties)
Property | Default | Notes |
---|---|---|
STRING_TO_DATE_FORMATS | MM/dd/yyyy hh:mm a;MM/dd/yy;MM/dd/yyyy;MM-dd-yy;MM-dd-yyyy;MMddyy;MMMM dd;yyyy;MM/dd/yy HH:mm:ss;MM/dd/yyyy HH:mm:ss;MM-dd-yy HH:mm:ss;MMddyy HH:mm:ss;MMMM dd HH:mm:ss;yyyy HH:mm:ss;yyyy-MM-dd | A semi-colon delimited list of strings representing date formats that the DateTimeService will use to parse dates when DateTimeServiceImpl.convertToSqlDateString) or DateTimeServiceImpl.convertToDate(String) is called. Note that patterns will be applied in the order listed (and the first applicable one will be used). For a more technical description of how characters in the parameter value will be interpreted, please consult the javadocs for java.text.SimpleDateFormat. Any changes will be applied when the application is restarted. |
actionlist.outbox | true | Globally disable or enable the outbox (screen to which there is a link in the action list that shows the documents a user has taken action on). |
attachment.dir.location | ${work.directory}/attachments | Directory where attachments will be stored |
attachments.directory | ${work.directory}/attachments | the base working directory for storage of note-associated attachments that are uploaded by users |
attachments.pending.directory | ${attachments.directory}/pending | The directory that holds attachments before they've been fully processed. |
classpath.resource.prefix | /WEB-INF/classes/ | Needed by DWR |
connection.pool.impl | XAPool | The underlying JDBC connection pool/transaction implementation |
context.names.app | ${app.context.name} | Unused. |
core.mode | LOCAL | Determines how the Rice core module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
core.url | ${rice.server.url}/core | The base URL for Rice core functionality exposed through web pages. |
coreservice.mode | LOCAL | Determines how the Rice core services module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
datasource.ojb.sequenceManager.className | org.apache.ojb.broker.platforms.Kuali${datasource.ojb.platform}SequenceManagerImpl | The class name of the OJB sequence provider. |
datasource.platform | org.kuali.rice.core.framework.persistence.platform.${datasource.ojb.platform}DatabasePlatform | Rice class for handling Differences between database versions |
datasource.pool.class.non.xa | bitronix.tm.resource.jdbc.lrc.LrcXADataSource | The non-transactional JDBC connection pool to use. |
dev.mode | false | Determines where the KSB exposed services will be consumed from: if false, the KSB will look to the bus to consume services; otherwise, if true, it will look for services locally. |
enable.nonproduction.data.unmasking | FALSE | Specifies whether data can be unmasked in non-production environments. Can be used to prevent access to sensitive data if loaded into a test environment. |
externalizable.help.url | ${application.url}/static/help/ | The base url for help content. |
externalizable.images.url | ${externalizable.static.content.url}/images/ | The base url for images that can reside outside the application |
ken.url | ${rice.server.url}/ken | The base URL for Rice Kuali Enterprise Notifications functionality exposed through web pages. |
kew.mode | LOCAL | Determines how the Rice Kuali Enterprise Workflow module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
kew.url | ${rice.server.url}/kew | The base URL for other Rice Kuali Enterprise Workflow functionality exposed through web pages. |
keystore.file | ${base.directory}/rice.keystore | the single keystore file currently used by the KSB to authenticate services |
kim.mode | LOCAL | Determines how the Rice Kuali Identity Module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
kim.url | ${rice.server.url}/kim | The base URL for Rice Kuali Identity Management functionality exposed through web pages. |
kns.css.files | kr/css/kuali.css,kr/scripts/jscalendar-1.0/calendar-win2k-1.css | A list of CSS files which KNS functionality (or extended web functionality) may use. |
kns.javascript.files | krad/plugins/jquery/jquery-1.6.3.js, krad/plugins/cookie/jquery.cookie.js, kr/scripts/core.js,kr/scripts/dhtml.js, kr/scripts/my_common.js, kr/scripts/jscalendar-1.0/calendar.js, kr/scripts/jscalendar-1.0/lang/calendar-en.js, kr/scripts/jscalendar-1.0/calendar-setup.js, dwr/engine.js, dwr/util.js,dwr/interface/PersonService.js, kr/scripts/objectInfo.js,scripts/rice-overrides.js | A list of Javascript files which KNS functionality (or extended web functionality) may use. |
kr.externalizable.images.url | ${application.url}/kr/static/images/ | The URL where images stored in the Rice war can be accessed from. |
kr.incident.mailing.list | An email list to send incident emails to. | |
kr.url | ${rice.server.url}/kr | The base URL for Rice Kuali Nervous System functionality exposed through web pages. |
krad.externalizable.images.url | ${application.url}/krad/images/ | The URL where KRAD images stored in the Rice war can be accessed from |
krad.url | ${rice.server.url}/krad | The base URL for Rice Kuali Rapid Application Development functionality exposed through web pages. |
ksb.mode | LOCAL | Determines how the Rice Kuali Service Bus module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
KualiExceptionIncidentServiceImpl.REPORT_MAIL_LIST | mailing list for the exception incident report email to be sent to | |
location.mode | LOCAL | Determines how the Rice location module expects to run. Rice currently runs bundled out of the box, therefore this is set to LOCAL. |
mail.transport.protocol | smtp | The mail protocol to send e-mail messages through. |
mailing.list.batch | kfs.notification.batch@kuali.org | The e-mail address where non-production e-mails should be sent. |
memory.monitor.threshold | 0.85 | Determines when the MemoryMonitor considers the application to have exceeded reasonable memory usage (decimal represents percentage of tenured allocation). |
nonproduction.notification.mailing.list | The e-mail address where non-production e-mails should be sent. | |
portal.css.files | css/portal.css | The css files that should be available to the portal |
portal.javascript.files | krad/plugins/jquery/jquery-1.6.3.js, krad/plugins/cookie/jquery.cookie.js, krad/plugins/scrollto/jquery.scrollTo-1.4.2-min.js, krad/plugins/blockUI/jquery.blockUI.js, kr/scripts/my_common.js, krad/plugins/easydrag/jquery.easydrag.js, krad/plugins/fancybox/jquery.fancybox-1.3.4.pack.js, krad/plugins/easing/jquery.easing-1.3.pack.js, krad/plugins/jgrowl/jquery.jgrowl.js, krad/scripts/portal.initialize.js, rice-portal/scripts/easyXDM/easyXDM.js | The javascript files that should be available to the portal. |
rice.core.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice core definitions. | |
rice.coreservice.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice core service definitions. | |
rice.kew.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice Kuali Enterprise Workflow service definitions. | |
rice.kew.enableKENNotification | TRUE | determines if notifications coming out of KEW should be forwarded to KEN |
rice.kew.ignoreUnknownPrincipalIds | FALSE | If false, KEW will fail (throw to exception) documents with invalid principals in their route actions |
rice.kim.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice Kuali Identity Management service definitions. | |
rice.kr.additionalSpringFiles | classpath:spring-rice-krad-overrides.xml | A list of Spring bean definition files which override the out-of-the-box Rice lKuali Nervous System service definitions. |
rice.ksb.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice Kuali Service Bus service definitions. | |
rice.ksb.registry.serviceUrl | ${application.url}/remoting/soap/ksb/v2_0/serviceRegistry | should specify Rice standalone instance service registry |
rice.ksb.web.forceEnable | TRUE | When TRUE, publish the KSB user interface components (such as the Message Queue, Thread Pool, Service Registry screens) even when the ksb.mode is not set to local. |
rice.location.additionalSpringFiles | A list of Spring bean definition files which override the out-of-the-box Rice location service definitions. | |
rice.portal.allowed.regex | ^${application.url}(/.*|)|^${rice.url}(/.*|) | A regular expression filter of valid links which the portal will display. |
rice.struts.message.resources | org.kuali.rice.krad.ApplicationResources,org.kuali.rice.krad.KRAD-ApplicationResources, org.kuali.rice.kew.ApplicationResources,org.kuali.rice.ksb.ApplicationResources, org.kuali.rice.kim.ApplicationResources,org.kuali.rice.krms.ApplicationResources, org.kuali.rice.core.web.cache.CacheApplicationResources, org.kuali.kfs.coa.coa-resources,org.kuali.kfs.fp.fp-resources, org.kuali.kfs.gl.gl-resources,org.kuali.kfs.pdp.pdp-resources, org.kuali.kfs.sys.sys-resources,org.kuali.kfs.vnd.vnd-resources, org.kuali.kfs.sec.sec-resources,org.kuali.kfs.module.ar.ar-resources, org.kuali.kfs.module.bc.bc-resources,org.kuali.kfs.module.cab.cab-resources, org.kuali.kfs.module.cam.cam-resources,org.kuali.kfs.module.cg.cg-resources, org.kuali.kfs.module.ec.ec-resources,org.kuali.kfs.module.external.kc.kc-resources, org.kuali.kfs.module.ld.ld-resources,org.kuali.kfs.module.tem.tem-resources, org.kuali.kfs.module.purap.purap-resources | All the files containing user messages that will be displayed via struts tags in jsps for Rice web functionality bundled with KFS. |
serviceServletUrl | ${application.url}/remoting | URL that maps to the KSB Servlet. It handles incoming |
useQuartzDatabase | TRUE | When using the embedded quartz scheduler started by the KSB, indicates whether or not that quartz scheduler should store it's entries in the database. If this is true than other appropriate quartz properties (ksb.org.quartz.*) may need to be set as well (see KSB Module Configuration). |
weeklyEmail.active | TRUE | turn on/off weekly workflow notifications |
workflow.documentsearch.base.url | ${workflow.url}/DocumentSearch.do?docFormKey=88888888&returnLocation=${application.url}/portal.do&hideReturnLink=true | The base URL for the web page for the Rice document search. |
workflow.url | ${rice.server.url}/kew | The base URL for Rice Kuali Enterprise Workflow functionality exposed through web pages. |
Security Configuration Properties (kfs-security-default-config.properties)
Property | Default | Notes |
---|---|---|
kfs.datasource.username | kfs | account that the application should use to access the KFS database |
kfs.datasource.password | ${kfs.datasource.username} | password for the application database account |
kfs.datasource.url | jdbc:mysql://localhost/${kfs.datasource.username} | JDBC URL that will be used by the application to access the KFS database |
rice.datasource.url | ${kfs.datasource.url} | JDBC url for the Rice server components (KEW/KIM/KSB). It will also be used when configuring a local Rice standalone server. |
rice.datasource.username | ${kfs.datasource.username} | account that the application should use to access the Rice database |
rice.datasource.password | ${kfs.datasource.password} | password for the Rice database account |
keystore.alias | rice | |
keystore.password | r1c3pw | Password used to open the keystore. |
encryption.key | 7IC64w6kAAAA | Used by the DemostrationGradeEncryptionService to encrypt / decrypt data in the database. |
b2b.user.agent | B2B properties that only need to be configured if the environment will be connected to Sciquest B2B. | |
b2b.purchase.order.identity | ||
b2b.purchase.order.password | ||
b2b.shopping.identity |
| |
b2b.shopping.password |
Include Page | ||||
---|---|---|---|---|
|