Create a สร้าง database schema in Oracle with the appropriate permissions; name it ใน Oracle ตั้งชื่อว่า jwdb (or another preferred name) e.g. หรือชื่ออื่นที่ต้องการ) ดังตัวอย่าง
Code Block |
---|
|
CREATE USER jwdb IDENTIFIED BY jwdb;
GRANT connect, resource TO jwdb;
GRANT create session TO jwdb;
GRANT create table TO jwdb; |
- Download ดาวน์โหลดไฟล์ jwdb-oracle.sql and load this SQL file to และนำเข้า "jwdb" schema . This will populate all necessary ซึ่งจะเป็นการนำเข้าโครงสร้างตารางฐานข้อมูลที่จำเป็นของ Joget Workflow table structures into ลงใน "jwdb".
- In ในโฟลเดอร์ joget-installation-directory/wflow/, create a new สร้าง datasource profile file ใหม่ - app_datasource-oracle.properties.
- Open to edit เปิดไฟล์ joget-installation-directory/wflow/app_datasource-oracle.properties in text editor, then insert contents as shown in Figure 1 below. You may need to edit the configurations (such as datasource URL, database user/password) according to your environment.properties บนโปรแกรม text editor หรือโปรแกรมอื่นๆ จากนั้นเพิ่มข้อความตาม รูปที่ 1 ด้านล่าง คุณอาจต้องแก้ไขการกำหนดค่า (เช่น datasource URL, username, password) ตามสภาพแวดล้อมของ Oracle
- เปิดไฟล์ Open to edit joget-installation-directory/wflow/app_datasource.properties in text editor, and change the content as shown in Figure 2 below. This is to activate the datasource profile named บนโปรแกรม text editor หรือโปรแกรมอื่นๆ จากนั้นเพิ่มข้อความตาม รูปที่ 2 ด้านล่าง ขั้นตอนนี้จะเป็นการเปิดใช้งาน datasource profile ที่ชื่อว่า "oracle".
- Restartรัน Joget Workflow server.ใหม่อีกครั้ง
...
รูปที่ 1: การตั้งค่า Datasource Profile
...
Code Block |
---|
|
workflowUser=jwdb
workflowPassword=jwdb
workflowDriver=oracle.jdbc.driver.OracleDriver
workflowUrl=jdbc\:oracle\:thin\:@hostname\:1521\:XE |
You may need to change the คุณอาจต้องแก้ไขการกำหนดค่า เช่น datasource URL, database user and database user's password accordingly.
...
username, password
รูปที่ 2: datasource.properties
Code Block |
---|
|
currentProfile=oracle |
...