<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了   回復  更多評論
      

    主站蜘蛛池模板: 亚洲AV无码成人精品区蜜桃| 久久精品国产99国产精品亚洲| 免费萌白酱国产一区二区三区| 亚洲综合无码一区二区| 18禁无遮挡无码网站免费| 久久久久亚洲国产AV麻豆| 亚洲av无码一区二区三区不卡 | 美女视频黄a视频全免费| 免费精品久久久久久中文字幕| 亚洲视频2020| 亚洲欧洲一区二区三区| 免费在线观看视频网站| 一级毛片**免费看试看20分钟 | 国产成人无码精品久久久免费 | 久久精品成人免费看| 亚洲无码一区二区三区| 久久精品国产亚洲网站| 国产又大又长又粗又硬的免费视频| 日本三级在线观看免费| 久久精品国产亚洲av瑜伽| 亚洲一区二区电影| 亚洲国产一成久久精品国产成人综合 | 久久不见久久见免费影院| 精品久久久久久无码免费| 亚洲综合欧美色五月俺也去| 亚洲国产成人一区二区精品区| 在线观看免费为成年视频| 久久久久国产精品免费免费不卡| 国产精品无码亚洲一区二区三区| 亚洲视频在线视频| 毛茸茸bbw亚洲人| 日本免费高清一本视频| 精品成在人线AV无码免费看| a级毛片在线免费观看| 黄色免费在线网址| 亚洲欧美日韩一区二区三区在线 | 有码人妻在线免费看片| 亚洲av永久中文无码精品| 亚洲欧洲日产国产最新| 亚洲色图国产精品| 亚洲高清专区日韩精品|