⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bpelc

📁 bpel执行引擎用来执行bpel业务流程
💻
字号:
#!/bin/sh##    Licensed to the Apache Software Foundation (ASF) under one or more#    contributor license agreements.  See the NOTICE file distributed with#    this work for additional information regarding copyright ownership.#    The ASF licenses this file to You under the Apache License, Version 2.0#    (the "License"); you may not use this file except in compliance with#    the License.  You may obtain a copy of the License at##       http://www.apache.org/licenses/LICENSE-2.0##    Unless required by applicable law or agreed to in writing, software#    distributed under the License is distributed on an "AS IS" BASIS,#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.#    See the License for the specific language governing permissions and#    limitations under the License.cygwin=false;darwin=false;case "`uname`" in    Darwin*) 	darwin=true	if [ -z "$JAVA_HOME" ] ; then	    JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home	fi	;;    CYGWIN*) 	cygwin=true 	;;esac## Try to find our home directory command="$0"progname=`basename "$0"`# need this for relative symlinkswhile [ -h "$command" ] ; do    ls=`ls -ld "$command"`    link=`expr "$command" : '.*-> \(.*\)$'`    if expr "$link" : '/.*' > /dev/null; then	command="$link"    else	command=`dirname "$command"`"/$link"    fidoneODE_BIN=`dirname "$command"`ODE_BIN=`cd "$ODE_BIN" && pwd`# For Cygwin, ensure paths are in UNIX format before anything is touchedif $cygwin ; then    [ -n "$ODE_BIN" ] && ODE_BIN=`cygpath --unix "$ODE_BIN"`    [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`fiODE_HOME=`cd "$ODE_BIN/.." && pwd`LIB="$ODE_HOME/lib"ETC="$ODE_HOME/etc"if [ -z "$JAVACMD" ] ; then  if [ -n "$JAVA_HOME"  ] ; then    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then      # IBM's JDK on AIX uses strange locations for the executables      JAVACMD="$JAVA_HOME/jre/sh/java"    else      JAVACMD="$JAVA_HOME/bin/java"    fi  else    JAVACMD=`which java 2> /dev/null `    if [ -z "$JAVACMD" ] ; then        JAVACMD=java    fi  fifiif [ ! -x "$JAVACMD" ] ; then  echo "Error: JAVA_HOME is not defined correctly."  echo "  We cannot execute $JAVACMD"  exit 1fiif [ ! -d "$JAVA_HOME" ] ; then echo "Error: JAVA_HOME is not defined correctly (no such directory)." exit 1fi# Add user-specified classpath. LOCALCLASSPATH="$ODE_CLASSPATH"# Add Ode librariesfor f in $LIB/*.jardo  LOCALCLASSPATH=$LOCALCLASSPATH:$fdone# For Cygwin, switch paths to Windows format before running javaif $cygwin; then    ODE_HOME=`cygpath --windows "$ODE_HOME"`    JAVA_HOME=`cygpath --windows "$JAVA_HOME"`    LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`    CYGHOME=`cygpath --windows "$HOME"`    LIB=`cygpath --windows "$LIB"`    ODE_BIN=`cygpath --windows "$ODE_BIN"`    ETC=`cygpath --windows "$ETC"`fiexec "$JAVACMD" $ODE_JAVAOPTS -cp "$LOCALCLASSPATH" org.apache.ode.tools.bpelc.cline.BpelC "$@"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -