前页 | 后页 |
部署脚本
这些部分解释了如何创建用于部署当前包的命令脚本。可以通过选择“执行>源>编译>部署”功能区选项或按
来执行脚本。访问
在执行分析器窗口中:
- 找到并双击所需的脚本,然后选择“部署”页面或
- 点击窗口工具栏中的 ,选择要在其中创建新脚本的包,然后选择“部署”页面
功能区 |
开发>源代码>执行分析器>编辑分析器脚本 执行 > 工具 >分析器 |
键盘快捷键 |
|
行动
行动 |
细节 |
也见 |
---|---|---|
Execute Command as: |
Process If the deployment is handled externally, enter the path to the program or batch file to run, followed by any parameters; the program is launched in a separate process. Example: C:\apache-ant-1.7.1\bin\ant.cmd myproject deploy Batch File When using this option, you can enter multiple commands that are then executed as a single script in a command console; you have access to any environment variables available in a standard command console. Example: @echo on IF NOT EXIST "%1%" GOTO DEPLOY_NOWAR IF "%APACHE_HOME%" == "" GOTO DEPLOY_NOAPACHE xcopy /L "%1%" "%APACHE_HOME%\webapps" GOTO DEPLOY_END rem rem NO WAR FILE rem :DEPLOY_NOWAR echo "%1% WAR file not found" GOTO DEPLOY_END rem rem NO APACHE ENVIRONMENT VARIABLE rem :DEPLOY_NOAPACHE echo "APACHE_HOME environment variable not found" :DEPLOY_END pause |
|
解析输出 |
从列表中选择解析器会导致部署脚本的输出被捕获;根据从列表中选择的语法解析输出。 要显示系统输出窗口,请选择“开始>所有窗口>设计>探索>系统”功能区选项。 |