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

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

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

    Oracle神諭

      BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
      284 隨筆 :: 9 文章 :: 106 評論 :: 0 Trackbacks
    JBPM_ACTION                                 action記錄表
    JBPM_DECISIONCONDITIONS     結果條件表
    JBPM_DELEGATION                        委托表
    JBPM_EVENT                                    事件表 處理進入或者離開事件
    JBPM_EXCEPTIONHANDLER        異常處理表
    JBPM_ID_GROUP                             用戶組表
    JBPM_ID_MEMBERSHIP                 用戶成員表   表現用戶和組之間的多對多關系
    JBPM_ID_PERMISSIONS                用戶權限表
    JBPM_ID_USER                                用戶表
    JBPM_MODULEDEFINITION         模塊定義表
    JBPM_MODULEINSTANCE            模塊實例表
    JBPM_NODE                                     流程節點表
    JBPM_POOLEDACTOR                   匯集參與著表
    JBPM_PROCESSDEFINITION         流程定義表
    JBPM_PROCESSFILE                       流程文件表
    JBPM_PROCESSFILEBLOCK         流程文件塊表
    JBPM_PROCESSINSTANCE           流程實例表
    JBPM_RUNTIMEACTION               運行中行為表
    JBPM_SCRIPTVARIABLES             腳本變量表
    JBPM_SWIMLANE                          泳道表
    JBPM_SWIMLANEINSTANCE       泳道實例表
    JBPM_TASK                                     任務表
    JBPM_TASKACTORPOOL             用戶行為匯總
    JBPM_TASKINSTANCE                 任務實例
    JBPM_TIMER                                   計時表
    JBPM_TOKEN                                 令牌表
    JBPM_TOKENVARIABLEMAP      令牌變量影射表
    JBPM_TRANSITION                        轉換表
    JBPM_VARIABLEINSTANCE         變量實例表
    JBPM_VARIABLEINSTANCEBLOCK  變量實例塊表
    JBPM_VARIABLEMAPPING            變量影射表
    posted on 2005-06-06 13:27 java世界暢談 閱讀(2638) 評論(8)  編輯  收藏 所屬分類: 工作流

    評論

    # re: jBPM表的猜測 2005-09-02 09:23 王藝
    我覺得JBPM_TRANSITION 這個表的名字翻譯的好像不太準確。
    你覺得叫做“狀態躍遷表”如何?  回復  更多評論
      

    # re: jBPM表的猜測 2005-11-06 12:34 else
    我覺得應該翻譯為“狀態流轉表”
    呵呵,其實翻譯什么都不是很重要
    理解最重要,呵呵  回復  更多評論
      

    # re: jBPM表的猜測 2005-11-16 17:04 好惲來時crazy
    我生成oracle數據庫腳本不對,怎么會是create table JBPM_ACTION (ID_ bigint generated by default as identity (start with 1).......;這樣的,明顯錯了,在編譯過程中還報錯了(只生成oracle腳本)
    具體錯誤如下
    [delete] Deleting directory E:\jbpm-starters-kit-3.0.1\jbpm-db\build\oracle\testresults
    [mkdir] Created dir: E:\jbpm-starters-kit-3.0.1\jbpm-db\build\oracle\testresults\xml

    BUILD FAILED
    E:\jbpm-starters-kit-3.0.1\jbpm-db\build.xml:146: The following error occurred while executing this line:
    E:\jbpm-starters-kit-3.0.1\jbpm-db\build.xml:86: Could not create task or type of type: junit.

    Ant could not find the task or a class this task relies upon.

    This is common and has a number of causes; the usual
    solutions are to read the manual pages then download and
    install needed JAR files, or fix the build file:
    - You have misspelt 'junit'.
    Fix: check your spelling.
    - The task needs an external JAR file to execute
    and this is not found at the right place in the classpath.
    Fix: check the documentation for dependencies.
    Fix: declare the task.
    - The task is an Ant optional task and the JAR file and/or libraries
    implementing the functionality were not found at the time you
    yourself built your installation of Ant from the Ant sources.
    Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
    task and make sure it contains more than merely a META-INF/MANIFEST.MF.
    If all it contains is the manifest, then rebuild Ant with the needed
    libraries present in ${ant.home}/lib/optional/ , or alternatively,
    download a pre-built release version from apache.org
    - The build file was written for a later version of Ant
    Fix: upgrade to at least the latest release version of Ant
    - The task is not an Ant core or optional task
    and needs to be declared using <taskdef>.
    - You are attempting to use a task defined using
    <presetdef> or <macrodef> but have spelt wrong or not
    defined it at the point of use

    Remember that for JAR files to be visible to Ant tasks implemented
    in ANT_HOME/lib, the files must be in the same directory or on the
    classpath

    Please neither file bug reports on this problem, nor email the
    Ant mailing lists, until all of these causes have been explored,
    as this is not an Ant bug.  回復  更多評論
      

    # re: jBPM表的猜測 2005-11-16 17:05 好惲來時crazy
    希望能給我解決辦法
    lysamper@sina.com  回復  更多評論
      

    # re: jBPM表的猜測 2006-07-27 22:26 黃又木
    我正需要這樣的一份猜想! 拜謝,拜謝!

    另:求JBPM與weblogic的配置詳細說明!   回復  更多評論
      

    # re: jBPM表的猜測 2006-07-29 19:19 黃又木
    有一個問題, 我把jbpm的數據庫和oracle配置好了! 運行一個例子, 誰知道它里面居然先drop所有的表,然后再create表,再運行例子里面的所需要的數據庫操作,最后又drop所有的表!

    從而結果運行下來,數據庫變空了!,而且沒次運行例子時,它都執行上面的操作,我不知道哪里出了問題! 請指教!!!  回復  更多評論
      

    # re: jBPM表的猜測 2007-04-14 11:07 有貓相伴的日子
    @黃又木
    你檢查一下自己的測試代碼,你肯定調用了一個重部部署的方法了cfg.createSchema();  回復  更多評論
      

    # re: jBPM表的猜測 2007-04-24 09:51 hansen
    把hibernate 配置文件中的 <property name="hbm2ddl.auto">create</property>

    屏蔽掉就不會drop了   回復  更多評論
      

    主站蜘蛛池模板: 久久亚洲免费视频| 亚洲制服丝袜中文字幕| 日韩亚洲产在线观看| 久久精品成人免费观看97| 亚洲免费日韩无码系列| 国产精品九九久久免费视频| 亚洲黑人嫩小videos| 免费国产精品视频| 无码日韩人妻av一区免费| 大地资源在线资源免费观看| 亚洲综合无码一区二区痴汉| 国产AV无码专区亚洲AV漫画 | 国产一级淫片a免费播放口| 亚洲av成人中文无码专区| 亚洲精品成人网站在线播放| 亚洲色一色噜一噜噜噜| 亚洲AV永久无码精品一区二区国产| 无码乱肉视频免费大全合集| 日韩电影免费在线观看网站| 中文字幕在线免费播放| 男女午夜24式免费视频| 国产日韩AV免费无码一区二区三区 | 亚洲最大免费视频网| 亚洲不卡1卡2卡三卡2021麻豆| 夜夜亚洲天天久久| 亚洲AV日韩AV永久无码下载| 亚洲一区二区三区影院| 三上悠亚亚洲一区高清| 亚洲精品成a人在线观看| 亚洲精品动漫人成3d在线| 国产福利电影一区二区三区,亚洲国模精品一区| 国产免费不卡v片在线观看 | 亚洲精品无码av天堂| 999在线视频精品免费播放观看| 91香蕉在线观看免费高清| 日韩一区二区a片免费观看| 国产又大又黑又粗免费视频| 内射少妇36P亚洲区| 国产亚洲精品精品精品| 亚洲中文字幕一二三四区苍井空| 亚洲av中文无码乱人伦在线r▽|