Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Table of Contents

Overview

This document is intended to supplement the Kuali Rice 2.1.2 Installation Guide and aid the creation of an embedded rice client application. The information on this page is targeted for the Rice 2.1.2 release.

Running a Rice client application in Embedded Mode means:

  • one or more Rice modules - in particular, KEW and KIM - is are executing from within the client application
  • the client application has direct access to the Rice Standalone Server database

...

  1. A database account with access to the Rice database
  2. Procure the UC Davis-specific JARs for the modules you will be embedding along with any of their associated dependencies using either of the following methods:
    • Download ucd-rice-standalone-server-impl WAR from Artifactory , selecting the most recent version. This WAR contains all dependencies.
    • Download JARs for the specific module from this location in the Artifactory , selecting the most recent version.
  3. A certificate for the machine which the machines hosting the client application that will be connection connecting to the Rice Standalone Server.

    ...

    Code Block
    
    keytool -keystore rice.keystore -storepass nowUCme_nowUdont -v -alias <your alias> -genkeypair -validity 9999 -dname "CN=<your fully qualified machine name>, OU=<your organization>, O=UC Davis, L=Davis, ST=California, C=US"
    

    ...

    Rice Libraries

    In Rice 1.0.x, there were only two main jars, rice-api and rice-impl. With the modularity work there are more api jars corresponding to service apis and framework components. Additionally, the implementation module has been split (though there is still a shared implementation module as not all components of the Rice implementation have been fully modularized as of the Rice 2.x.x release). This work was done according to the design outlined at the following page: Modularity Design

    The libraries and their dependencies required for the modules which your application will be using must be included in your client application. Ideally you only include the modules of rice you are using. In practice, you may need to include them all until rice's modularity work is complete. The only modules rice recommends compiling against are api & framework modules.

    Below is a list of the old 1.0.3.3 libraries and their 2.x.x counterparts:

    Old Library

    New Library

    rice-api-1.0.3.3.jar

    rice-core-api-2.x.x.jar

     

    rice-core-framework-2.x.x.jar

     

    rice-core-service-api-2.x.x.jar

     

    rice-core-service-framework-2.x.x.jar

     

    rice-edl-framework-2.x.x.jar

     

    rice-ken-api-2.x.x.jar

     

    rice-kew-api-2.x.x.jar

     

    rice-kew-framework-2.x.x.jar

     

    rice-kim-api-2.x.x.jar

     

    rice-kim-framework-2.x.x.jar

     

    rice-kns-2.x.x.jar

     

    rice-krad-app-framework-2.x.x.jar

     

    rice-krad-web-framework-2.x.x.jar

     

    rice-krms-api-2.x.x.jar

     

    rice-krms-framework-2.x.x.jar

     

    rice-krms-ksb-api-2.x.x.jar

     

    rice-location-api-2.x.x.jar

     

    rice-krmslocation-framework-2.x.x.jar

     rice-impl-1.0.3.3.jar

    rice-ksb-apiimpl-2.x.x.jar

     

    rice-locationcore-apiimpl-2.x.x.jar

     

    rice-core-locationservice-frameworkimpl-2.x.x.jar

     

    rice-edl-impl-12.0x.3.3x.jar

     

    rice-kew-impl-2.x.x.jar

     

    rice-corekim-impl-2.x.x.jar

     

    rice-core-servicekrms-impl-2.x.x.jar

     

    rice-ksb-edlclient-impl-2.x.x.jar

     

    rice-ksb-kewserver-impl-2.x.x.jar

     

    rice-kimlocation-impl-2.x.x.jar

     rice-sampleapp-1.0.3.3.jar

    rice-krmscore-service-implweb-2.x.x.jar

     

    rice-ksbcore-client-implweb-2.x.x.jar

     

    rice-ksb-server-implweb-2.x.x.jar

     

    rice-location-implweb-2.x.x.jar

    rice-sampleapp-1.0.3.3.jar

    rice-core-service-web-2.x.x.jar

     

    rice-core-web-2.x.x.jar

     

    rice-ksb-web-2.x.x.jar

     

    rice-location-web-2.x.x.jar

    Properties Configuration

    We use a simple XML configuration to declare properties as key-value pairs. For example:

    ...

    borderStylesolid
    title/usr/local/rice/rice-config.xml

    ...

    Properties Configuration

    We use a simple XML configuration to declare properties as key-value pairs. For example:

    Code Block
    title/usr/local/rice/rice-config.xml
    borderStylesolid
    
    <config>
        <param name="datasource.ojb.platform">Oracle9i</param>
        <param name="datasource.platform">org.kuali.rice.core.framework.persistence.platform.OraclePlatform</param>
        <param name="datasource.url">jdbc:oracle:thin:@ldap://oraldap1.ucdavis.edu:389/rice_test,cn=OracleContext,dc=ucdavis,dc=edu</param>
        <param name="datasource.ojbdriver.platform">Oracle9i<name">oracle.jdbc.driver.OracleDriver</param>
        <param name="datasource.platform">org.kuali.rice.core.framework.persistence.platform.OraclePlatform<.pool.validationQuery">select 1 from duak</param>
        <param name="datasource.pool.maxWait">30000</param>
        <param name="datasource.pool.size">30</param>
        <param name="datasource.pool.url">jdbc:oracle:thin:@ldap://oraldap1.ucdavis.edu:389/rice_test,cn=OracleContext,dc=ucdavis.edu,dc=edu</maxActive">50</param>
        <param name="datasource.driver.name">oracle.jdbc.driver.OracleDriver<minIdle">7</param>
        <param name="datasource.pool.validationQuery">select 1 from duak<initialSize">7</param>
        <param name="datasource.pool.maxWaitaccessToUnderlyingConnectionAllowed">30000<>true</param>
        <param name="datasource.pool.size">30<username">my_db_user</param>
        <param name="datasource.pool.maxActive">50<password">my_db_password</param>
        <param name="datasource.minIdle">7</param>
        <param name="datasource.initialSize">7</param>
        <param name="datasource.accessToUnderlyingConnectionAllowed">true</param>
        <param name="datasource.username">my_db_user</param>
        <param name="datasource.password">my_db_password</param>
    <config>
    
    Info
    titleConfiguration File Options
    • Default Rice Configuration
      • By default Rice looks for rice-config.xml in /usr/local/rice/ at launch time. Externalizing the configuration out to the file system allows us to substitute different values for different properties in different environments. We don't need to create a configuration file for say, the TEST vs. the PROD environment, and then build the application (i.e. the same WAR can be deployed in any instance).
      • See a full-blown set of sample properties .
    • Other Kuali Application Configurations
      • Kuali COEUS

    Core Data Source Configuration

    Kuali Rice uses Java Open Transaction Manager, so we declare the appropriate beans.

    solid
    Code Block
    borderStyle
    
    <config>
    
    Info
    titleConfiguration File Options
    • Default Rice Configuration
      • By default Rice looks for rice-config.xml in /usr/local/rice/ at launch time. Externalizing the configuration out to the file system allows us to substitute different values for different properties in different environments. We don't need to create a configuration file for say, the TEST vs. the PROD environment, and then build the application (i.e. the same WAR can be deployed in any instance).
      • See a set of sample properties .
    • Other Kuali Application Configurations
      • Kuali COEUS is a fully enabled rice application. The Kuali COEUS config file, kc-config.xml , is included here for reference.

    Core Data Source Configuration

    Kuali Rice uses Java Open Transaction Manager, so we declare the appropriate beans.

    Code Block
    titleclasspath:edu/ucdavis/myapp/config/application-data.xml
    borderStylesolid
    
    <bean id="jotm" class="org.springframework.transaction.jta.JotmFactoryBean">
        <property name="defaultTimeout" value="${transaction.timeout}"/>
    </bean>
    	
    

    We must declare three data sources:

    1. A transactional data source where the local client application's Rice tables are located. This is required by JOTM.
      Code Block
      titleclasspath:edu/ucdavis/myapp

    ...

    1. /config/application-data.xml
      borderStylesolid
      
      <bean id="dataSource" class="org.kuali.rice.core.framework.persistence.jdbc.datasource.XAPoolDataSource">
          <property name="transactionManager" ref="jotm" />
          <property name="driverClassName" value="${datasource.driver.name}" />
          <property name="url" value="${datasource.url}" />
          <property name="

    ...

    1. maxSize" value="${

    ...

    We must declare three data sources:

    1. A transactional data source where the local client application's Rice tables are located. This is required by JOTM.
      Code Block
      borderStylesolid
      titleclasspath:edu/ucdavis/myapp/config/application-data.xml
      
      <bean id="dataSource" class="org.kuali.rice.core.framework.persistence.jdbc.datasource.XAPoolDataSource"datasource.pool.size}" />
          <property name="minSize" value="${datasource.initialSize}" />
          <property name="transactionManagermaxWait" refvalue="jotm${datasource.pool.maxWait}" />
          <property name="driverClassNamevalidationQuery" value="${datasource.driverpool.namevalidationQuery}" />
          <property name="urlusername" value="${datasource.urlusername}" />
          <property name="maxSizepassword" value="${datasource.pool.sizepassword}" />
          <property name="minSize" value="${datasource.initialSize}" />
          <property name="maxWait" value="${datasource.pool.maxWait}" //>
      </bean>
      
    2. A non-transactional data source pointing to those same Rice tables. This is required by Quartz.
      Code Block
      titleclasspath:edu/ucdavis/myapp/config/application-data.xml
      borderStylesolid
      
      <bean id="nonTransactionalDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
          <property name="validationQueryurl" value="${datasource.pool.validationQueryurl}" />
          <property name="username" value="${datasource.username}" />
          <property name="password" value="${datasource.password}" />
        </bean> 
      A non-transactional data source pointing to those same Rice tables. This is required by Quartz.
      Code Block
      borderStylesolid
      titleclasspath:edu/ucdavis/myapp/config/application-data.xml
      
      <bean id="nonTransactionalDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" <property name="driverClassName" value="${datasource.driver.name}" />
          <property name="urlinitialSize" value="${datasource.urlinitialSize}" />
          <property name="usernameminIdle" value="${datasource.usernameminIdle}" />
          <property name="passwordmaxActive" value="${datasource.passwordmaxActive}" />
          <property name="driverClassNamemaxWait" value="${datasource.driver.namemaxWait}" />
          <property name="initialSizevalidationQuery" value="${datasource.initialSizevalidationQuery}" />
          <property name="minIdletestOnBorrow" value="${datasource.minIdletestOnBorrow}" />
          <property name="maxActivetestOnReturn" value="${datasource.maxActivetestOnReturn}" />
          <property name="maxWaittestWhileIdle" value="${datasource.maxWaittestWhileIdle}" />
          <property name="validationQueryaccessToUnderlyingConnectionAllowed" value="${datasource.validationQuery}" />
          <property name="testOnBorrow" value="${datasource.testOnBorrow}" /accessToUnderlyingConnectionAllowed}" />
      </bean>
      
      Tip

      To take advantage of pooling capabilities, testOnBorrow should be set to true.

    3. A transactional data source pointing to the database of the Rice Standalone Server.
      Code Block
      titleclasspath:edu/ucdavis/myapp/config/application-data.xml
      borderStylesolid
      
      <bean id="standaloneDataSource" class="org.kuali.rice.core.framework.persistence.jdbc.datasource.XAPoolDataSource">
          <property name="testOnReturntransactionManager" valueref="${datasource.testOnReturn}jotm" />
          <property name="testWhileIdledriverClassName" value="${standalone.datasource.driver.testWhileIdlename}" />
          <property name="accessToUnderlyingConnectionAllowedurl" value="${datasource.accessToUnderlyingConnectionAllowed}" />
      </bean>
      
      Tip

      To take advantage of pooling capabilities, testOnBorrow should be set to true.

      A transactional data source pointing to the database of the Rice Standalone Server.
      Code Block
      borderStylesolid
      titleclasspath:edu/ucdavis/myapp/config/application-data.xml
      
      <bean id="standaloneDataSource" class="org.kuali.rice.core.framework.persistence.jdbc.datasource.XAPoolDataSource"standalone.datasource.url}" />
          <property name="maxSize" value="${standalone.datasource.pool.size}" />
          <property name="transactionManagerminSize" ref="jotmvalue="${standalone.datasource.initialSize}" />
          <property name="driverClassNamemaxWait" value="${standalone.datasource.driverpool.namemaxWait}" />
          <property name="urlvalidationQuery" value="${standalone.datasource.pool.urlvalidationQuery}" />
          <property name="maxSizeusername" value="${standalone.datasource.pool.sizeusername}" />
          <property name="minSizepassword" value="${standalone.datasource.initialSizepassword}" />
          <property name="maxWait" value="${standalone.datasource.pool.maxWait}" />
          <property name="validationQuery" value="${standalone.datasource.pool.validationQuery}" />
          <property name="username" value="${standalone.datasource.username}" />
          <property name="password" value="${standalone.datasource.password}" />
      </bean>
      

    ...

    1. </bean>
      

    KEW Service Configuration

    As of 1.0.1.1-UCD-SR1d, Rice applications will no longer encrypt workflow document content. This is accomplished by disabling encryption using the out-of-the-box non-encryption implementation (org.kuali.rice.core.impl.encryption.NoEncryptionEncryptionServiceImpl). It is instantiated by declaring classpath:edu/ucdavis/kuali/rice/kew/config/ucd-kew-service.xml in the Spring context.

    Consequently, the encryption.key property is no longer required.

    KRAD Service Configuration

    1. Maintenance Document Encryption
      • As of 1.0.1.1-UCD-SR1d, Rice applications will no longer encrypt

    ...

      • maintenance document content.
      • This is accomplished by disabling encryption using the out-of-the-box non-encryption implementation (org.kuali.rice.core.impl.encryption.NoEncryptionEncryptionServiceImpl).

    ...

      • Disable encryption by declaring the classpath:edu/ucdavis/kuali/rice/

    ...

      • krad/config/ucd-

    ...

      • krad-service.xml

    ...

      • Spring file (see UCD Spring Bean Configuration).
      • Remove (or comment out) references to the encryption.key property

    ...

    KRAD Service Configuration

    1. Maintenance Document Encryption
      • As of 1.0.1.1-UCD-SR1d, Rice applications will no longer encrypt maintenance document content.
      • This is accomplished by disabling encryption using the out-of-the-box non-encryption implementation (org.kuali.rice.core.impl.encryption.NoEncryptionEncryptionServiceImpl).
      • Disable encryption by declaring the classpath(e.g. in rice-config.xml, kc-config.xml, embedded-client-config.xml, etc.).

    UCD Spring Bean Configuration

    Declare the UCD-implemented Rice services:

    Code Block
    title/usr/local/rice/rice-config.xml
    borderStylesolid
    
        <param name="rice.kr.additionalSpringFiles">classpath:edu/ucdavis/kuali/rice/krad/config/ucd-krad-service.xml</param>
        <param name="rice.kew.additionalSpringFiles">classpath:edu/ucdavis/kuali/rice/

    ...

    kew/config/ucd

    ...

    UCD Spring Bean Configuration

    Declare the UCD-implemented Rice services:

    Code Block
    borderStylesolid
    title/usr/local/rice/rice-config.xml
    
        <param name="rice.kr.additionalSpringFiles">classpath-kew-service.xml</param>
    
    1. If you're using Spring's ContextLoaderListener, declare them in web.xml
      Code Block
      titlesrc/main/webapp/WEB-INF/web.xml
      borderStylesolid
      
      <listener>
          <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener>
      
      <context-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>
              ...
              classpath:edu/ucdavis/kuali/rice/kim/config/ucd-krad-service.xml
              classpath:edu/ucdavis/kuali/rice/

    ...

    1. kew/config/ucd-

    ...

    1. kew-service.

    ...

    1. xml
             

    ...

    1.  

    ...

    1. ..

    ...

    1. If you're using Spring's ContextLoaderListener, declare them in web.xml
      Code Block
      borderStylesolid
      titlesrc/main/webapp/WEB-INF/web.xml
      
      <listener>
          <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener>
      
      <context-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>
              ...
              classpath:edu/ucdavis/kuali/rice/kim/config/ucd-krad-service.xml
              classpath:edu/ucdavis/kuali/rice/kew/config/ucd-kew-service.xml
              ...
          </param-value>
      </context-param>
      

    CoreConfigurer Bean Configuration

    Finally, we declare the coreConfigurer bean and inject all of the core data source beans.

    ...

    borderStylesolid
    titleclasspath:edu/ucdavis/myapp/config/rice-common.xml

    ...

    1. .
          </param-value>
      </context-param>
      

    CoreConfigurer Bean Configuration

    Finally, we declare the coreConfigurer bean and inject all of the core data source beans.

    Code Block
    titleclasspath:edu/ucdavis/myapp/config/rice-common.xml
    borderStylesolid
    
    
       <bean id="coreConfigurer" class="org.kuali.rice.core.impl.config.module.CoreConfigurer">
        <property name="dataSource" ref="dataSource" />
        <property name="nonTransactionalDataSource"  ref="nonTransactionalDataSource" />
        <property name="serverDataSource" ref="standaloneDataSource"/>
        <property name="transactionManager" ref="jotm" />
        <property name="userTransaction" ref="jotm" />
      </bean>
      <bean id="ksbConfigurer" class="org.kuali.rice.ksb.messaging.config.KSBConfigurer" />
      <bean id="kradConfigurer" class="org.kuali.rice.krad.config.KRADConfigurer" />
      <bean id="coreConfigurercoreServiceConfigurer" class="org.kuali.rice.corecoreservice.impl.config.module.CoreConfigurer">
        <property name="dataSource" ref="dataSource" CoreServiceConfigurer" />
      <bean  <property nameid="nonTransactionalDataSourcekimConfigurer"  ref="nonTransactionalDataSource" />
        <property name="serverDataSource" ref="standaloneDataSource"class="org.kuali.rice.kim.config.KIMConfigurer" />
      <bean  <property nameid="transactionManagerkewConfigurer" refclass="jotmorg.kuali.rice.kew.config.KEWConfigurer" />
      <bean  <property nameid="userTransactionkenConfigurer" refclass="jotmorg.kuali.rice.ken.impl.config.KENConfigurer" />
      </bean>
    
    
      <bean id="ksbConfigureredlConfigurer" class="org.kuali.rice.ksbedl.messagingimpl.config.KSBConfigurerEDLConfigurer" depends-on="coreConfigurer"/>
       <bean id="knsConfigurerkrmsConfigurer" class="org.kuali.rice.kradkrms.config.KRADConfigurerKRMSConfigurer" depends-on="coreConfigurer"/>
    
      <bean id="coreServiceConfigurerlocationConfigurer" class="org.kuali.rice.coreservice.impl.config.CoreServiceConfigurer" depends-on="coreConfigurer"/>
       <bean id="kimConfigurer" class="org.kuali.rice.kim.config.KIMConfigurer" depends-on="coreConfigurer"/>
       <bean id="kewConfigurer" class="org.kuali.rice.kew.config.KEWConfigurer" depends-on="coreConfigurer"/>
     
    "org.kuali.rice.location.impl.config.LocationConfigurer" />
     
    

    Additional Rice Resources

    • The Kuali Rice 2.1.2 Installation Guide
      The installation guide contains useful information on all aspects of the Rice application from configuration of the standalone server to creation of a template rice client application and is a recommended additional resource for setting up your client application. If you use the maven command for creating a client application, be sure to update the -Darchetypeversion=2.1.2
      Code Block
      
       mvn archetype:generate -DarchetypeGroupId=org.kuali.rice -DarchetypeArtifactId=rice-archetype-quickstart -DarchetypeVersion=2.1.2