Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
ECLIPSE ANT INTEGRATION

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

For functionality that is not directly available from Eclipse, Ant provides a back door. Ant is an XML- and Java-based automation tool. Recently, I've been using Ant to auto-deploy application changes to Tomcat and restart that Web application. This tip covers Eclipse's Ant integration, and the following tip, "Automating Tomcat Application Restarts with Ant," explains how to set up Ant to auto-deploy Web application changes and to restart the Web app.

Ant is often executed from the command line, but we Eclipse users can execute Ant directly from our workbench. Eclipse 2.1 and 3.0 will put an Ant icon (which is an image of an actual bug) beside each Ant XML file. The default editor for Ant also nicely color-codes your Ant XML and validates its syntax. The Eclipse Ant editor will also provide an Outline view that lists each Ant target that exists within the XML. Just like with a Java source Outline view, the Ant outline makes it easy to navigate source.

To run an Ant XML script, click your right mouse button on the file in the Package Explorer and select Run Ant from the pop-up menu. A panel labeled "Modify attributes and launch" will be presented; that panel contains six tabs: Main, Refresh, Targets, Classpath, Properties, and Common. The following are short descriptions for each tab:

  1. Main: This allows for the settings of arguments and directories for the invocation of the Ant main method.
  2. Refresh: You can use this tab to specify whether or not you want your workspace to automatically be refreshed after the execution of the Ant script.
  3. Targets: When you click on this tab, it will all the Ant target with checkboxes that you can use to select which targets are to be executed.
  4. Classpath: This lets you set the classpath to be used by the Ant execution. It also lets you set or override the ANT_HOME environment variable.
  5. Properties: This lets you set properties that will be accessible to the current execution of the Ant script.
  6. Common: This tab lets you specify what Eclipse perspective to switch to when Ant is launched. It also lets you add the Ant targets selected to the favorites menu.

To execute my Ant scripts, I select the build.xml file from the Package Explorer by clicking the right mouse button, selecting the Run Ant option, clicking the appropriate target, and clicking the Run button. However, there is a faster way to select the build.xml file. In the icon toolbar, there is a small running man icon that appears to be carrying a brief case. (In Eclipse 2.1, the briefcase is black, but in Eclipse 3.0, it's red.) A single click on the running business man icon will launch Ant. Note that when Ant is launched, its output is placed in the Eclipse console view.




相关文章

相关软件