Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
AppFuseSupport
Articles
Articles_cn
Articles_de
Articles_pt
Articles_zh
IntegratingJBPMIntoA...
StrutsResumeSupport




JSPWiki v2.2.33

[RSS]


Hide Menu

RunningOnOracle


This is version 37. It is not the current version, and thus it cannot be edited.
[Back to current version]   [Restore this version]


The following instructions describe the steps needed to configure AppFuse so that the applications it generates will work with an Oracle database.

Table of Contents

  • [1] Create Database Schema
  • [2] Setup JDBC Driver
  • [3] Edit build.properties in the main AppFuse Directory
  • [4] Generate Application
  • [5] Deploy Application
  • [6] Test Database Access

Create Database Schema [#1]

Create the Oracle Database schema account that will hold your application's tables. This value should correspond to the -Ddb.name you use when running the ant new task.

CREATE USER <database-schema-owner> IDENTIFIED BY <password>;  
GRANT CONNECT TO <database-schema-owner>;
GRANT RESOURCE TO <database-schema-owner>;

Setup JDBC Driver [#2]

Obtain the Oracle JDBC driver appropriate for your database and JDK version. (Oracle's license agreement will be shown just be downloading, make sure you read and understand it.)

NOTE: According to the Oracle JDBC Driver README , classes12.jar is for JDK1.2 & 1.3, ojdbc14.jar is for JDK 1.4. The instructions here assume you will be using ojdbc14.jar, modify the instructions below accordingly if otherwise.

Next, in your {AppFuse home}/lib directory, add an "oracle" directory and place the ojdbc14.jar in it.

Edit build.properties in the main AppFuse Directory [#3]

Next, the build.properties file needs to be updated to use an Oracle (instead of the default MySQL) database.

Here is a idea of what the database entries should look like for Oracle (modify the various fields as appropriate for your system):

database.jar=${lib.dir}/oracle/ojdbc14.jar
database.type=oracle
database.host=localhost
#database.admin.* info is for autogenerating schema account (works only with MySQL)

#database.admin.url=jdbc:${database.type}://${database.host}/template1
#database.admin.username=adminname
#database.admin.password=adminpwd

hibernate.dialect=net.sf.hibernate.dialect.Oracle9Dialect
database.driver_class=oracle.jdbc.driver.OracleDriver
database.url=jdbc:oracle:thin:@localhost:1521:mySID
#use the database schema owner and password created in step #1 above here
database.username=username
database.password=password

NOTE: In the listings above, database.host should refer to the machine the Oracle database is running on. Also, database.url's "mySID" at the end should refer to the SERVICE_NAME within the tnsnames.ora database file on the database server machine.

NOTE: There is also a database.name parameter available, but usage of it should be avoided. This parameter's value is automatically overwritten by what you will provide in the next step as the -Ddb.name parameter to the ant new task.

Generate Application [#4]

Run ant new -Dapp.name=myappname -Ddb.name=mydbname as usual to generate the new web application directory.

For mydbname, use the schema owner name you created in Step #1 above.

Deploy Application [#5]

Run "ant setup" within your new web app directory to compile and deploy your new application on Tomcat. Next, Start Tomcat and bring up the application: http://localhost:8080/myappname

NOTE: The Oracle database server may be configured to occupy port 8080 with its own servlet container. This may cause port conflicts if you are running Tomcat on the same machine. You may find it very difficult to turn off the Oracle container. If this problem occurs, it may be easiest to shut down the Oracle database, start Tomcat (so it will occupy port 8080), and then restart Oracle.

Test Database Access [#6]

To test that database accesses are working properly, edit one of the profiles within the sample application and change the country listed. Then, within Oracle SQL*Plus, log in as the schema owner and issue this command:

select username, country from app_user;  

If everything is working correctly, you should see that the country value has changed for the profile that you edited.



Go to top   More info...   Attach file...
This particular version was published on 06-Nov-2006 13:52:46 MST by GlenMazza.