OLE comes with several defaults for various parameters. The following page talks about the defaults and how they can be overridden. There are four files that gets loaded in a hierarchal order and are as follows;
- url-rice-properties.xml (ole-common/ole-utility/src/main/resources/org/kuali/ole): Consists of base application URLs along with URLs for the environments.
- olefs-config-defaults.xml (ole-app/olefs): Consists of base defaults.
- Bootstrap.xml: Consists of defaults that are filtered during the build process.
- common-config.xml (lives under ${user.home}/kuali/main/local): This file gets loaded last and any overrides should be placed in this file.
url-rice-properties.xml:
Parameter Name | Default Value | Purpose |
---|---|---|
ole.url.base | http://localhost:8080 | Default application URL |
ole.docstore.url.base | ${ole.url.base}/oledocstore | Default docstore URL |
ole.fs.url.base | ${ole.url.base}/olefs | Default olefs URL |
olefs-config-defaults:
Parameter Name | Default Value | Purpose |
---|---|---|
environment | dev | This is used to determine the environment. The value also |
dev.mode | false | This value when set to false triggers the xml polling services. |
application.url appserver.url rice.server.url docSearchURL | ${ole.fs.url.base} ${application.url} ${application.url} ${ole.docstore.url.base} | Default olefs url Default app server url This can be updated to point to the standalone server if necessary. docsearch url; for searching records in docstore. |