<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 37,  comments - 53,  trackbacks - 0
    ofbiz默認(rèn)的數(shù)據(jù)庫為derby,這個(gè)當(dāng)然不能在生產(chǎn)環(huán)境中使用,而且也不方便調(diào)試和管理。雖然ofbiz也支持很多的開源數(shù)據(jù)庫,例如mysql等,但是我們這里還是使用主流的數(shù)據(jù)庫系統(tǒng)oracle 11g.詳細(xì)的操作如下
    1.更新JDBC驅(qū)動,將oracle最新的jdbc驅(qū)動copy到${ofbiz install dir}/framework/entity/lib/jdbc 目錄下。
    2.設(shè)置實(shí)體引擎( Entity Engine)的缺省數(shù)據(jù)庫為oracle.在修改 ${ofbiz install dir}/framework/entity/config/entityengine.xml文件中修改配置:
       a.修改數(shù)據(jù)庫連接參數(shù):
         <datasource name="localoracle"
                helper-class="org.ofbiz.entity.datasource.GenericHelperDAO"
                schema-name="ofbiz" 你的數(shù)據(jù)庫schema名稱
                field-type-name="oracle"
                check-on-start="true"
                add-missing-on-start="true"
                alias-view-columns="false"
                join-style="ansi">
            <read-data reader-name="seed"/>
            <read-data reader-name="seed-initial"/>
            <read-data reader-name="demo"/>
            <read-data reader-name="ext"/>
            <inline-jdbc
                    jdbc-driver="oracle.jdbc.driver.OracleDriver"
                    jdbc-uri="jdbc:oracle:thin:@192.168.1.154:1521:ofbiz"  ofbiz為你的數(shù)據(jù)庫SID
                    jdbc-username="ofbiz"  用戶名
                    jdbc-password="ofbiz"  密碼
                    pool-minsize="2"
                    pool-maxsize="250"/>
        </datasource>
      b. 修改實(shí)體引擎的數(shù)據(jù)庫缺省配置如下:(將datasource-name的值設(shè)置為“localoracle”)
          <delegator name="default" entity-model-reader="main" entity-group-reader="main" entity-eca-reader="main" distributed-cache-clear-enabled="false">
            <group-map group-name="org.ofbiz" datasource-name="localoracle"/>
            <group-map group-name="org.ofbiz.olap" datasource-name="localoracle"/>
        </delegator>
        <delegator name="default-no-eca" entity-model-reader="main" entity-group-reader="main" entity-eca-reader="main" entity-eca-enabled="false" distributed-cache-clear-enabled="false">
            <group-map group-name="org.ofbiz" datasource-name="localoracle"/>
            <group-map group-name="org.ofbiz.olap" datasource-name="localoracle"/>
        </delegator>

        <!-- be sure that your default delegator (or the one you use) uses the same datasource for test. You must run "ant run-install" before running "ant run-tests" -->
        <delegator name="test" entity-model-reader="main" entity-group-reader="main" entity-eca-reader="main">
            <group-map group-name="org.ofbiz" datasource-name="localoracle"/>
            <group-map group-name="org.ofbiz.olap" datasource-name="localoracle"/>
        </delegator>
        <delegator name="other" entity-model-reader="main" entity-group-reader="main" entity-eca-reader="main">
            <group-map group-name="org.ofbiz" datasource-name="localoracle"/>
        </delegator>
    3.補(bǔ)充:在進(jìn)行以上配置時(shí),請確保你已經(jīng)存在ofbiz的數(shù)據(jù)庫,實(shí)例,用戶等都已創(chuàng)建好。
    4. 初始化數(shù)據(jù)和導(dǎo)入:   
         ofbiz$ java -jar ofbiz.jar -install
    通過以上命令即可進(jìn)行數(shù)據(jù)庫的初始化和初始數(shù)據(jù)的導(dǎo)入,這里包括了ofbiz自帶的例子,應(yīng)用的所有的數(shù)據(jù)表和初始化數(shù)據(jù)

    5.問題:
    在使用oracle數(shù)據(jù)庫時(shí),當(dāng)前的版本可能會碰到ORA-01843:無效的月份的問題      

        以sys用戶登陸并創(chuàng)建Trigger:

        create or replace TRIGGER ON_CONNECT AFTER LOGON ON DATABASE
         DECLARE
         guser varchar2(30);
         begin
          SELECT sys_context('USERENV','SESSION_USER') into guser FROM dual;
             if (guser='ofbiz' or guser='OFBIZ') THEN
                EXECUTE IMMEDIATE 'alter session set nls_timestamp_format = ''YYYY-MM-DD HH24:MI:SS.FF''';
             end if;
         end;

    注意對登陸用戶名的判斷必須大小寫都要考慮.

    另:ofbiz用戶不能擁有dba的權(quán)限,同時(shí)ofbiz用戶比需要有UNLIMITED TABLESPACE的權(quán)限,否則在創(chuàng)建數(shù)據(jù)表的時(shí)候會報(bào)“數(shù)據(jù)庫空間不足”的錯(cuò)誤,導(dǎo)致無法創(chuàng)建表。

    6.參考:
    http://blog.csdn.net/blieveme/archive/2007/10/16/1826604.aspx
    http://docs.ofbiz.org/display/~jacopoc/OFBiz+and+Oracle

    今天就到這里吧,明天繼續(xù):) 
    posted on 2009-09-03 20:27 雪地孤鴻 閱讀(2613) 評論(3)  編輯  收藏 所屬分類: ofbiz學(xué)習(xí)

    FeedBack:
    # re: ofbiz9 + oracle 11g
    2009-09-03 22:08 | 翔子
    學(xué)習(xí)了 ~ blog很不錯(cuò)  回復(fù)  更多評論
      
    # re: ofbiz9 + oracle 11g
    2009-09-04 14:38 | 99讀書人
    不錯(cuò)哦3213  回復(fù)  更多評論
      
    # re: ofbiz9 + oracle 11g
    2009-09-06 19:10 | 移動彩鈴12530
    死杜甫時(shí)間跨度福建撒嬌的看法都是  回復(fù)  更多評論
      

    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導(dǎo)航:
     
    <2009年9月>
    303112345
    6789101112
    13141516171819
    20212223242526
    27282930123
    45678910

    常用鏈接

    留言簿(17)

    隨筆分類

    隨筆檔案

    文章檔案

    blog

    搜索

    •  

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 伊人久久亚洲综合影院| www.黄色免费网站| 亚洲国产成人爱av在线播放| 久久亚洲国产成人影院| 成人免费黄色网址| 亚洲一级在线观看| 永久免费的网站在线观看| 亚洲一区二区三区久久| 国产精品视频免费一区二区| 亚洲精品美女网站| 国产成人免费一区二区三区| 亚洲av乱码一区二区三区按摩| 啦啦啦www免费视频| 亚洲精品国产摄像头| 免费jjzz在在线播放国产| 全黄A免费一级毛片| 亚洲日韩激情无码一区| 日韩精品内射视频免费观看 | 亚洲精品无码成人片在线观看| 青娱乐在线免费观看视频| 国产精品亚洲w码日韩中文| 日韩精品无码免费专区午夜 | 国产在线精品免费aaa片| 亚洲国产精品国自产电影| 色欲国产麻豆一精品一AV一免费| 久久亚洲精品成人无码网站| 无码国产精品一区二区免费I6| 亚洲精品国产av成拍色拍| 国产黄色一级毛片亚洲黄片大全| 久久国产精品2020免费m3u8| 激情内射亚洲一区二区三区爱妻| 日本xxwwxxww在线视频免费| 国产精品永久免费视频| 亚洲欧洲第一a在线观看| 四虎成人免费影院网址| 亚欧国产一级在线免费| 亚洲成a人片77777群色| 国产精品jizz在线观看免费 | 嫖丰满老熟妇AAAA片免费看| 黄页免费视频播放在线播放| 亚洲av一综合av一区|