Ant启动weblogic

 

Ant启动weblogic

<target name=”startWebLogic” description=”starts a WebLogic”>
<if>
<equals arg1=”${os.name}” arg2=”Linux”/>//判断操作系统类型
<then>
<exec dir=”${bea.home}/user_projects/domains/${weblogic.domain}” executable=”${bea.home}/user_projects/domains/${weblogic.domain}/startWebLogic.sh”/>
</then>
<else>
<exec dir=”${bea.home}/user_projects/domains/${weblogic.domain}” executable=”${bea.home}/user_projects/domains/${weblogic.domain}/startWebLogic.cmd”/>
</else>
</if>
</target>


来自我的小站 www.threes.cn



你可能感兴趣的:(linux,weblogic,ant,OS)