...
Run catalina.bat run on Windows or catalina.sh run if not.
Configuring Financials
Financials will need to know about your Rice instance. You will need to create a properties file and pass the name of that file to Financials using the additional.config.locations system property. Here is an example of that properties file:
Code Block |
---|
base.url=http://localhost:8080
rice.server.url=http://localhost:8081/kr-dev
rice.url=http://localhost:8081/kr-dev
rice.ksb.registry.serviceUrl=${rice.url}/remoting/soap/ksb/v2_0/serviceRegistry
keystore.file=/Users/user/git/financials/kfs-core/src/main/config/demo/rice.keystore
log4j.settings.file=/Users/user/kfs/log4j.properties
kfs.datasource.username=kfsonly
kfs.datasource.password=${kfs.datasource.username}
kfs.datasource.url=jdbc:mysql://riceweb/${kfs.datasource.username}
kfs.datasource.validating.query=select 1
kfs.datasource.pool.maxActive=50
kfs.datasource.pool.minIdle=5
kfs.datasource.pool.initialSize=5
kfs.datasource.ddl.url=${kfs.datasource.url}
kfs.datasource.ddl.username=${kfs.datasource.username}
kfs.datasource.ddl.password=${kfs.datasource.password}
rice.datasource.validating.query=select 1
rice.datasource.pool.maxSize=50
rice.datasource.pool.minSize=5
rice.datasource.url=jdbc:mysql://riceweb/rice
rice.datasource.username=rice
rice.datasource.password=rice
rice.datasource.ddl.url=${rice.datasource.url}
rice.datasource.ddl.username=${rice.datasource.username}
rice.datasource.ddl.password=${rice.datasource.password}
updateWorkflowOnStartup=true
updateDatabaseOnStartup=true
updateDocumentstoreOnStartup=true |