ACTIVITI WEB DESIGNER

ACTIVITI WEB DESIGNER

  1. 下载代码:http://signavio-core-components.googlecode.com/svn/trunk

  2. 修改build.properties
    # This is the Signavio Core Components configuration file. Most users only have to configure this file.

    # The path to your Apache Tomcat webapps folder这里就是生成WAR后,会自动拷贝过去的目录
    dir-tomcat-webapps 
    =  /apache-tomcat- 6.0.16 /webapps

    # The path to your jBoss deployment folder
    dir-jboss-webapps 
    =  /jboss- 5.1.0 /server/default/deploy

    # The folder the war file(s) is/are stored
    target 
    =  target

    # The version of the application. If you want to integrate the Signavio Core Components into
    #  your own software product
    ,  you can align the version number.
    version
    = 5.0 -SNAPSHOT

    # The name of the war file
    ,  if you use the all-in-one-war build target
    war 
    =  activiti-modeler

    # The configuration you want to use. This is the name of the folder in the 'configuration' project
    #  that contains the configuration and skin files. The following configurations are available:
    #  default
    ,  Activiti ,  jBPM
    #  You can also add your own configuration in the 'configuration' project.
    configuration 
    =  Activiti

    # The URL of your server. Format: http(s)://<domain>(:<port>)这里要填实际的IP
    #  Do not add a trailing slash here!
    host 
    = http://10.5.12.248:8180/

    # The path on your system the directories and diagram files are created.这里就是图形文件保存的地方
    # Do not use \ ! Always use / !
    fileSystemRootDirectory 
    =  ../../../workspace/activiti-modeler-examples

  3. 要特别注意编码,否则会编译失败,修改EDITOR中的build.properties
    <java dir = " ${build} "  jar = " ${root}/lib/yuicompressor-2.4.2.jar "  fork = " true "  failonerror = " true "  output = '${compress.temp}'>
        <!-- add a row as follow --> 
        <sysproperty key
    = " file.encoding "  value = " UTF-8 " /> <arg file = '${build}/oryx.debug.js' /> 
    </java>

  4. 运行命令
    ant build-and-deploy-all-in-one-war-to-tomcat

  5. 打开浏览器输入网址:http://10.5.12.248:8180/activiti-modeler即可

你可能感兴趣的:(ACTIVITI WEB DESIGNER)