Tutorial: Hello World with Ant(轉,來自apache)
This document provides a step by step tutorial for starting java programming with Ant. It does not contain deeper knowledge about Java or Ant. This tutorial has the goal to let you see, how to do the easiest steps in Ant.
Content
- Preparing the project
- Enhance the build file
- Enhance the build file
- Using external libraries
- Resources
Preparing the project
We want to separate the source from the generated files, so our java source files will be in src folder. All generated files should be under build, and there splitted into several subdirectories for the individual steps: classes for our compiled files and jar for our own JAR-file.
We have to create only the src directory. (Because I am working on Windows, here is the win-syntax - translate to your shell):
md src
The following simple Java class just prints a fixed message out to STDOUT, so just write this code into srcoataHelloWorld.java.
package oata; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } }
Now just try to compile and run that:
md buildclasses javac -sourcepath src -d buildclasses srcoataHelloWorld.java java -cp buildclasses oata.HelloWorldwhich will result in
Hello World
Creating a jar-file is not very difficult. But creating a startable jar-file needs more steps: create a manifest-file containing the start class, creating the target directory and archiving the files.
echo Main-Class: oata.HelloWorld>myManifest md buildjar jar cfm buildjarHelloWorld.jar myManifest -C buildclasses . java -jar buildjarHelloWorld.jar
Note: Do not have blanks around the >-sign in the echo Main-Class instruction because it would falsify it!
Four steps to a running application
After finishing the java-only step we have to think about our build process. We have to compile our code, otherwise we couldn't start the program. Oh - "start" - yes, we could provide a target for that. We should package our application. Now it's only one class - but if you want to provide a download, no one would download several hundreds files ... (think about a complex Swing GUI - so let us create a jar file. A startable jar file would be nice ... And it's a good practise to have a "clean" target, which deletes all the generated stuff. Many failures could be solved just by a "clean build".
By default Ant uses build.xml as the name for a buildfile, so our .uild.xml would be:
Now you can compile, package and run the application via
ant compile ant jar ant run
Or shorter with
ant compile jar run
While having a look at the buildfile, we will see some similar steps between Ant and the java-only commands:
java-only | Ant |
---|---|
md buildclasses javac -sourcepath src -d buildclasses srcoataHelloWorld.java echo Main-Class: oata.HelloWorld>mf md buildjar jar cfm buildjarHelloWorld.jar mf -C buildclasses . java -jar buildjarHelloWorld.jar |
|
Enhance the build file
Now we have a working buildfile we could do some enhancements: many time you are referencing the same directories, main-class and jar-name are hard coded, and while invocation you have to remember the right order of build steps.
The first and second point would be addressed with properties, the third with a special property - an attribute of the
Now it's easier, just do a ant and you will get
Buildfile: build.xml clean: compile: [mkdir] Created dir: C:...uildclasses [javac] Compiling 1 source file to C:...uildclasses jar: [mkdir] Created dir: C:...uildjar [jar] Building jar: C:...uildjarHelloWorld.jar run: [java] Hello World main: BUILD SUCCESSFUL
Using external libraries
Somehow told us not to use syso-statements. For log-Statements we should use a Logging-API - customizable on a high degree (including switching off during usual life (= not development) execution). We use Log4J for that, because
- it is not part of the JDK (1.4+) and we want to show how to use external libs
- it can run under JDK 1.2 (as Ant)
- it's highly configurable
- it's from Apache ;-)
We store our external libraries in a new directory lib. Log4J can be from Logging's Homepage. Create the lib directory and extract the log4j-1.2.9.jar into that lib-directory. After that we have to modify our java source to use that library and our buildfile so that this library could be accessed during compilation and run.
Working with Log4J is documented inside its manual. Here we use the MyApp-example from the . First we have to modify the java source to use the logging framework:
package oata; import org.apache.log4j.Logger; import org.apache.log4j.BasicConfigurator; public class HelloWorld { static Logger logger = Logger.getLogger(HelloWorld.class); public static void main(String[] args) { BasicConfigurator.configure(); logger.info("Hello World"); // the old SysO-statement } }
Most of the modifications are "framework overhead" which has to be done once. The blue line is our "old System-out" statement.
Don't try to run ant - you will only get lot of compiler errors. Log4J is not inside the classpath so we have to do a little work here. But do not change the CLASSPATH environment variable! This is only for this project and maybe you would break other environments (this is one of the most famous mistakes when working with Ant). We introduce Log4J (or to be more precise: all libraries (jar-files) which are somewhere under .lib) into our buildfile:
... ... classpathref="classpath"/> ... classname="${main-class}">
In this example we start our application not via its Main-Class manifest-attribute, because we could not provide a jarname and a classpath. So add our class in the red line to the already defined path and start as usual. Running ant would give (after the usual compile stuff):
[java] 0 [main] INFO oata.HelloWorld - Hello World
What's that?
- [java] Ant task running at the moment
- 0 sorry don't know - some Log4J stuff
- [main] the running thread from our application
- INFO log level of that statement
- oata.HelloWorld source of that statement
- - separator
- Hello World the message
Why we have used Log4J? "It's highly configurable"? No - all is hard coded! But that is not the debt of Log4J - it's ours. We had coded BasicConfigurator.configure(); which implies a simple, but hard coded configuration. More confortable would be using a property file. In the java source delete the BasicConfiguration-line from the main() method (and the related import-statement). Log4J will search then for a configuration as described in it's manual. Then create a new file src/log4j.properties. That's the default name for Log4J's configuration and using that name would make life easier - not only the framework knows what is inside, you too!
log4j.rootLogger=DEBUG, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%m%n
This configuration creates an output channel ("Appender") to console named as stdout which prints the message (%m) followed by a line feed (%n) - same as the earlier System.out.println() :-) Oooh kay - but we haven't finished yet. We should deliver the configuration file, too. So we change the buildfile:
......
This copies all resources (as long as they haven't the suffix ".java") to the build directory, so we could start the application from that directory and these files will included into the jar.
In this step we will introduce the usage of the JUnit [3] testframework in combination with Ant. Because Ant has a built-in JUnit 3.8.2 you could start directly using it. Write a test class in srcHelloWorldTest.java:
public class HelloWorldTest extends junit.framework.TestCase { public void testNothing() { } public void testWillAlwaysFail() { fail("An error message"); } }
Because we dont have real business logic to test, this test class is very small: just show how to start. For further information see the JUnit documentation [3] and the manual of task. Now we add a junit instruction to our buildfile:
...id="application" location="${jar.dir}/${ant.project.name}.jar"/> ...
We reuse the path to our own jar file as defined in run-target by giving it an ID. The printsummary=yes lets us see more detailed information than just a "FAILED" or "PASSED" message. How much tests failed? Some errors? Printsummary lets us know. The classpath is set up to find our classes. To run tests the batchtest here is used, so you could easily add more test classes in the future just by naming them *Test.java. This is a common naming scheme.
After a ant junit you'll get:
... junit: [junit] Running HelloWorldTest [junit] Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0,01 sec [junit] Test HelloWorldTest FAILED BUILD SUCCESSFUL ...
We can also produce a report. Something that you (and other) could read after closing the shell .... There are two steps: 1. let
...... todir="${report.dir}">
Because we would produce a lot of files and these files would be written to the current directory by default, we define a report directory, create it before running the junit and redirect the logging to it. The log format is XML so junitreport could parse it. In a second target junitreport should create a browsable HTML-report for all generated xml-log files in the report directory. Now you can open the ${report.dir}index.html and see the result (looks something like JavaDoc).
Personally I use two different targets for junit and junitreport. Generating the HTML report needs some time and you dont need the HTML report just for testing, e.g. if you are fixing an error or a integration server is doing a job.
Resources
[1] [2] [3]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/11049438/viewspace-967502/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ant Hello World
- RabbitMQ tutorial - "Hello world!"MQ
- Hello, World
- Hello World!
- Hello World
- Hello World by Microsoft Speech SDK 5.1 (轉)ROS
- Go - Hello WorldGo
- Docker Hello WorldDocker
- 【Java】Hello worldJava
- React Hello,WorldReact
- Mockito Hello WorldMockito
- Deep "Hello world!"
- Go:Hello WorldGo
- Hello Python worldPython
- react的”Hello World !“React
- WebGL 的 Hello WorldWeb
- ABAP程式Hello World
- dotnet hello world
- 輸出hello world
- 從 Form1.Caption = “Hello World”說起 (轉)ORMAPT
- Flutter Web 之 Hello WorldFlutterWeb
- ROS之初見Hello WorldROS
- 【Flutter 基礎】Hello WorldFlutter
- JMicro微服務Hello World微服務
- 01-C++ "hello world"C++
- RabbitMQ 入門 - Hello WorldMQ
- [WebAssembly 入門] Hello, world!Web
- 機器學習,Hello World from Javascript!機器學習JavaScript
- Spring版Hello WorldSpring
- Play框架之Hello, World!框架
- C# Hello,World(1)
- hello world"你知多少------300種程式語言中的"hello world"程式匯
- fasthttp 概述與 Hello World(本文)ASTHTTP
- [系列] Go gRPC Hello WorldGoRPC
- PHPCPP安裝以及hello worldPHP
- spring boot(一)hello worldSpring Boot
- Smali 語法解析——Hello World
- C語言列印“Hello World“C語言