owfe-suite.bat
来自「一个工作流设计及定义的系统,可以直接与数据库结合进行系统工作流程的定义及应用.」· Batch 代码 · 共 75 行
BAT
75 行
remrem starting the default OpenWFE full suiteremrem $Id: start-openwfe.bat,v 1.2 2004/05/14 12:51:31 jmettraux Exp $remrem rem by default OpenWFE uses the ISO-8859-1 encoding (Vieille Europe)rem you can set here the encoding that you'd like to use by changing therem next export line and uncommenting it.rem rem set ENCODING=-Dopenwfe.xml.encoding=ISO-8859-15remrem common settingsrem set JAVA_HOME=c:\j2sdk1.4.2_01rem set OPENWFE_HOME=..set OPENWFE_HOME=c:\cygwin\home\John\openwfe-1.4.4set JAVA_CMD=%JAVA_HOME%\bin\javaset ETC=%OPENWFE_HOME%\etcset JARS=%OPENWFE_HOME%\jarsremrem classpath (you usually don't need to modify this)setlocal enabledelayedexpansionset CP=%JAVA_HOME%/jre/lib/rt.jar;%JAVA_HOME%/lib/tools.jarfor %%i in ("%JARS%\*.jar") do set CP=!CP!;%%irem echo %CP%if ""%1""==""stop"" goto stopset FLAVOUR=%1rem the workflow engine itselfstart owfe.bat engine %FLAVOUR%rem a small webserver for the workflow definitionsrem (http://localhost:7079)start owfe.bat wfdserver %FLAVOUR%rem storing the workitems start owfe.bat worklist %FLAVOUR%rem the webclient to the worklistrem (http://localhost:7080)start owfe.bat webclient %FLAVOUR%rem automatic agents live herestart owfe.bat reactor %FLAVOUR%rem Droflo listens on port 7085start owfe.bat droflo %FLAVOUR%goto end:stoprem stop the engine%JAVA_CMD% openwfe.org.misc.SignalClient 6554 STOP%JAVA_CMD% openwfe.org.misc.SignalClient 6555 STOP%JAVA_CMD% openwfe.org.misc.SignalClient 6556 STOP%JAVA_CMD% openwfe.org.misc.SignalClient 6557 STOP%JAVA_CMD% openwfe.org.misc.SignalClient 6558 STOP%JAVA_CMD% openwfe.org.misc.SignalClient 6559 STOP:endrem that's all folks
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?