Ant 简介-上

Apache Ant 是由 Java 语言开发的工具,由 Apache 软件基金会所提供。Apache Ant 的配置文件写成 XML 容易维护和书写,而且结构很清晰。本教程将以简单的方式会向你展示如何利用 Apache ANT 来自动地构建和部署过程。

  1. 下载到某个目录解压到, 例如安装路径C:\L_Executable\apache-ant-1.10.5
  2. 配置环境变量
ANT_HOME C:\L_Executable\apache-ant-1.10.5
Path %ANT_HOME%\bin
  1. 运行ant -version查看是否安装成功Apache Ant(TM) version 1.10.5 compiled on July 10 2018
    
    
       
    
    
        
    
    
    
    
    
    
    

    
    
    

    

插播Java教程

javac的官方说法:

-classpath:
设置用户类路径,它将覆盖CLASSPATH 环境变量中的用户类路径。若既未指定CLASSPATH 又未指定-classpath,则用户类路径由当前目录构成。
-sourcepath:
指定用以查找类或接口定义的源代码路径。与用户类路径一样,源路径项用分号 (;)进行分隔,它们可以是目录、JAR 归档文件或 ZIP 归档文件。如果使用包,那么目录或归档文件中的本地路径名必须反映包名。

注意:通过类路径查找的类,如果找到了其源文件,则可能会自动被重新编译。

-d用于指定.class文件的生成目录, 将目录 src/com/tt下Hello.Java类编译到bin目录下
美中不足的是-d需要指定已经存在的目录,不能自动创建。
javac -sourcepath src -classpath . -d bin src/com/tt/Hello.java
如果没什么其他类的依赖可简写为 javac -d bin src/com/tt/Hello.java

java会基于提供的classpath(缩写成cp)路径去搜索。
java -classpath bin com.tt.Hello

bin/目录中的所有文件归档到 'classes.jar' 中:

  • 方法一: 指定MANIFEST.MF文件的命令: jar vcfm classes.jar MANIFEST.MF -C bin/ .

  • 方法二: 先直接生成
    jar vcf classes.jar -C bin/ .
    再winRAR直接修改MANIFEST.MF


    或者拿出MANIFEST.MF文件后命令jar vufm classes.jar MANIFEST.MF, 这里注意要空两个空行, 如果遇到Duplicate name in Manifest: Created-By.这种语句直接忽略就好, 因为字段有重名而已。

之所以加v是为了生成详细输出, 去掉也没影响

关于Classpath一些笔记

Classpath可以用3种不同的方式设置:

  • 如果没有设置——那么classpath参数就会被忽略,环境变量中的CLASSPATH就会被使用到
  • 如果环境变量CLASSPATH没找到,那么就是默认使用当前目录(”.”)
  • 如果classpath作为命令行参数显示设置了,那么它就是覆盖所有其他的值。 当设置覆盖默认值(当前目录)时,classpath会造成不可预料的结果。 所以要么省略, 要么-cp .;lib/aaa.jar例如为javac -cp .;lib/aaa.jar bbb.java

入门小案例



    
        simple example build file
      

    
    

    
    
    
    

    
        
        
            
        

        
        
    

    
        
        
    

    
        
        
        
        
            
                
            
        
    

    
        
        
        
    


ant命令一览

OS: win10 64bit

>ant -help
ant [options] [target [target2 [target3] ...]]
Options:
  -help, -h              print this message and exit
  -projecthelp, -p       print project help information and exit
  -version               print the version information and exit
  -diagnostics           print information that might be helpful to
                         diagnose or report problems and exit
  -quiet, -q             be extra quiet
  -silent, -S            print nothing but task outputs and build failures
  -verbose, -v           be extra verbose
  -debug, -d             print debugging information
  -emacs, -e             produce logging information without adornments
  -lib             specifies a path to search for jars and classes
  -logfile         use given file for log
    -l                     ''
  -logger     the class which is to perform logging
  -listener   add an instance of class as a project listener
  -noinput               do not allow interactive input
  -buildfile       use given buildfile
    -file                  ''
    -f                     ''
  -D=   use value for given property
  -keep-going, -k        execute all targets that do not depend
                         on failed target(s)
  -propertyfile    load all properties from file with -D
                         properties taking precedence
  -inputhandler   the class which will handle input requests
  -find            (s)earch for buildfile towards the root of
    -s             the filesystem and use it
  -nice  number          A niceness value for the main thread:                         1 (lowest) to 10 (highest); 5 is the default
  -nouserlib             Run ant without using the jar files from                         ${user.home}/.ant/lib
  -noclasspath           Run ant without using CLASSPATH
  -autoproxy             Java1.5+: use the OS proxy settings
  -main           override Ant's normal entry point

ANT Contrib

让 ant 支持循环

你可能感兴趣的:(Ant 简介-上)