大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
为什么要使用自定义命令
创新互联建站专业为企业提供绿春网站建设、绿春做网站、绿春网站设计、绿春网站制作等企业网站建设、网页设计与制作、绿春企业网站模板建站服务,十载绿春做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。在很多场景下,你想更好的控制你的应用服务而不仅仅局限在内置的生命周期事件中。例如,你想实现各种服务等级的问题,比如热升级(替换.war文件后刷新web容器)、数据库模式升级等等。
Cloudify使用groovy闭包、外置groovy脚本、外置shell/batch脚本来提供自定义命令机制。这些命令可以在cloudify shell下运行。
描述一个自定义命令
自定义命令的描述在服务描述文件customCommands部分。每个customCommands 块使用数组来包含一个或多个命令。
下面是customCommands引用Groovy、shell、batch脚本的例子:
custom1.groovy
/* Run myFile.groovy whenever YOUR_COMMAND_NAME is invoked. */
customCommands ([
"YOUR_COMMAND_NAME" :"myFile.groovy"
])
/* Run myOtherFile.sh whenever YOUR_2ND_COMMAND_NAME is invoked. */
customCommands ([
"YOUR_2ND_COMMAND_NAME" :"myOtherFile.sh"
])
/* Run myBatchFile.bat whenever YOUR_3RD_COMMAND_NAME is invoked. */
customCommands ([
"YOUR_3RD_COMMAND_NAME" :"myBatchFile.bat"
])
下面是在customCommands块下使用Groovy闭包程序的例子:
customCommands2.groovy
customCommands ([
// A command with two parameters (firstName and lastName)
"YOUR_COMMAND_NAME" :{firstName,lastName ->
deflineSeparator =System.getProperty("line.separator");
defuserFile =newFile(context.serviceDirectory +lineSeparator +firstName+"_"+lastName+".txt";
System.out.println("User :"+firstName+" " +lastName +" text is "+userFile.text)
returntrue
}
])
当需要在groovy闭包程序或脚本内使用用户定义的java库,可以使用import声明,并将jar文件放在这个服务的usmlib(比如:
任何外置脚本必须复制到服务文件夹中
customCommands部分必须写在相关服务描述文件的综述部分(
tomcat.groovy
service {
name "tomcat"
icon "tomcat.gif"
type "WEB_SERVER"
numInstances 1
compute {
template "SMALL_LINUX_32"
}
lifecycle {
install "tomcat_install.groovy"
start "tomcat_start.groovy"
}
customCommands ([
"updateWar" :"update_war.groovy"
])
}
调用自定义命令
在部署应用时,你的自定义命令才被注册。一旦你的应用运行,在cloudify shell下可以随时使用自定义命令
在cloudify shell下调用自定义命令需要使用参数,如:invokeServiceName customCommandName
自定义命令有两个参数,则:invokeServiceName customCommandName x y
场景:
使用cloudify部署你的应用到云中,应用包含一个tomcat服务 安装完应用,你修复了一个web应用的bug为了实现更新需要做以下工作
update_warcc.groovy
customCommands ([
"updateWar" :"update_war.groovy"
])
import groovy.util.ConfigSlurper
defconfig=newConfigSlurper().parse(newFile("tomcat.properties").toURL())
defant =newAntBuilder();
ant.get(src:config.applicationWarUrl,dest:config.applicationWar,skipexisting:false)
ant.copy(todir: "${catalinaHome}/webapps",file:config.applicationWar,overwrite:true)