基于gradle构建java应用程序
基于gradle构建java应用程序示例
目录
你需要什么
用户手册
初始项目
项目结构
编译项目
运行项目
总结
源码
你需要什么
- 大约8分钟
- 一个文本编辑器
- 命令行终端
- jdk1.7或更高版本
- 最近版本的gradle
用户手册
gradle带有内置的init插件。它的文档地址
这个插件有一个task,名叫init,可以生成项目. init task使用内置的wrapper task生成wrapper脚本gradlew
运行init task
gradle init --type <name>
参数name可选值
- java-application
- java-library
- scala-library
- groovy-library
- basic
这里我们选择java-application类型
首先创建项目目录
$ mkdir java-demo $ cd java-demo
初始化项目
在项目目录中运行init task,并使用参数java-application
$ gradle init --type java-application Starting a Gradle Daemon (subsequent builds will be faster) > Task :wrapper > Task :init BUILD SUCCESSFUL
init task先运行wrapper task生成gradlew、gradlew.bat脚本,并创建下面的项目结构
├── build.gradle ├── gradle #wrapper的文件 │ └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main │ └── java #源文件 │ └── App.java └── test #测试 └── java └── AppTest.java
项目结构
settings.gradle有很多注释,有效行只有一行
settings.gradle
rootProject.name='java-demo'
配置root project的名称java-demo
生成的build.gradle同样有很多注释,下面是有效部分
build.gradle
apply plugin: 'java' apply plugin: 'application' repositories { jcenter() #公有仓库 } dependencies { compile 'com.google.guava:guava:21.0' #google的guava包 testCompile 'junit:junit:4.12' #junit测试包 } mainClassName = 'App' #main类
build文件中加了java和application两个插件。前者支持java项目,后者允许指定包含main方法的类,在编译时执行
src/main/App.java
public class App { public String getGreeting() { return "Hello world."; } public static void main(String[] args) { #在运行application插件的run task时调用 System.out.println(new App().getGreeting()); } }
src/test/java/AppTest.java
import org.junit.Test; import static org.junit.Assert.*; public class AppTest { @Test public void testAppHasAGreeting() { App classUnderTest = new App(); assertNotNull("app should have a greeting", classUnderTest.getGreeting()); } }
编译项目
编译项目使用build命令。可以使用常用的gradle命令,但是使用wrapper脚本更好
$ ./gradlew build > Task :compileJava > Task :processResources NO-SOURCE > Task :classes > Task :jar > Task :startScripts > Task :distTar > Task :distZip > Task :assemble > Task :compileTestJava > Task :processTestResources NO-SOURCE > Task :testClasses > Task :test > Task :check > Task :build BUILD SUCCESSFUL
注意:第一次运行时会比较慢
第一次运行build时,会检查.gradle目录是否存在guava、junit包。如果不存在,则下载并存到本地目录
下次运行build就使用缓存。build task编译class文件,运行test用例,生成测试报告
查看html报告build/reports/tests/test/index.html.
样例
运行项目
gradle构建使用了application插件,所以能在命令行运行程序。
看看有哪些task
$ ./gradlew tasks :tasks ------------------------------------------------------------ All tasks runnable from root project ------------------------------------------------------------ Application tasks ----------------- run - Runs this project as a JVM application // ... many other tasks ...
run task会让gradle读取mainClassName属性指定的类,执行main方法
$ ./gradlew run :compileJava UP-TO-DATE :processResources NO-SOURCE :classes UP-TO-DATE :run Hello world. BUILD SUCCESSFUL
总结
通过上面介绍可以学到
- 如何生成java应用程序
- 如何生成build文件、java文件
- 如何运行构建、查看测试报告
- 如何使用application插件的run task执行程序
源码
github地址
参考资料
《了凡四训》详解之改过之法
印光大师十念法(胡小林主讲第1集)
2020年12月14日 15:04
New web site is looking good. Thanks for the great effort.
2021年2月28日 00:57
Positive site, where did u come up with the information on this posting? I'm pleased I discovered it though, ill be checking back soon to find out what additional posts you include. <a href="https://en.wikipedia.org/wiki/Andrea_Natale">Dr. Natale</a>
2022年4月17日 01:10
I learn some new stuff from it too, thanks for sharing your information. industrial design firms
2022年4月18日 18:44
Thank you for some other informative website. The place else may just I get that kind of information written in such a perfect method? I have a venture that I am simply now running on, and I’ve been at the glance out for such info. Delta 8 gummies area 52
2022年4月20日 15:57 Thank you for this fascinating post, I am happy I observed this website on Google. Not just content, in fact, the whole site is fantastic. HARO link building
2022年4月27日 18:44
I can propose as shown by a general viewpoint even mindful tips, as shown by such's perspective: magazine module
2022年5月15日 16:25
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks 먹튀폴리스
2022年5月15日 22:02
Wow, this is fascinating reading. I am glad I found this and got to read it. Great job on this content. I liked it a lot. Thanks for the great and unique info. internet availability by postal code
2022年5月16日 00:13
thanks for this usefull article, waiting for this article like this again. best vocal presets
2022年5月16日 19:50
I was reading some of your content on this website and I conceive this internet site is really informative ! Keep on putting up. deja vu parfum
2022年5月17日 00:36
Awesome and interesting article. Great things you've always shared with us. Thanks. Just continue composing this kind of post. Satta king
2022年5月17日 03:02
Find the best papers on is my amigo's profile page. online butt plug
2022年5月17日 19:35
A very excellent blog post. I am thankful for your blog post. I have found a lot of approaches after visiting your post. Lacefront wig
2022年5月18日 17:08
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks 홈타이
2022年5月18日 19:47
What a fantabulous post this has been. Never seen this kind of useful post. I am grateful to you and expect more number of posts like these. Thank you very much. 바둑이사이트
2022年5月19日 21:02
Find the best <a href="https://www.beautyflex.co.uk/">european beauty products online</a> for black men and women, including international brands and UK brands from BeautyFlex UK.
2022年5月20日 13:59
Awesome and interesting article. Great things you've always shared with us. Thanks. Just continue composing this kind of post. Free Netflix 100%
2022年5月21日 19:09
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks 레깅스룸
2022年5月21日 20:08
Thank you very much for this useful article. I like it. outlook login
2022年5月22日 18:21
This is my first time visit here. From the tons of comments on your articles,I guess I am not only one having all the enjoyment right here!
2022年5月23日 23:29
"There’re various types of < a href=""https://satta-king-786.info/"">Satta king fast result</a> Satta King 786 Games and every Satta company open different results at a different time of the day. These games are being played all over the world and the Satta result is the outcome that comes in the form of 2 digit numbers and opens it on a fixed time each day. Satta result is the Satta number that decides the winner of the Satta King Fast. You can all the Satta king result; their Satta result is well-arranged on each page as it’s a source of visitors to any website. You can see current and old Satta results, which can help you to bet on the next Satta game.Over a million people are playing Satta lottey game online across India. The money that players receive after winning is the most interesting aspect of this game. The winners are known as Satta King and the results are posted daily on our official website is . Calculated risks can earn you big bucks with Satta Result. It is not necessary to invest a huge amount; you can also play with small money. The Satta game is quite easy to learn and play. Your win depends solely on your luck when you select the number randomly. Numbers must be chosen from 0 to 99. The game is risky but interesting. Gali Satta result, Diswar Satta Result, Faridabad result and Ghaziabad result are the 4 most searched keywords in Google. ' is Several times the result gets leaked in the market which is known as the Satta leak number which can make you rich. Every Satta king 786 result was announced on time, as Disawar satta result announced at 5:10am, Gali Satta Result announced at 11:30 pm, Ghaziabad result was announced at 8:30 pm, And Faridabad result announce at 6:00 pm.
"
2022年5月24日 00:35
I was reading some of your content on this website and I conceive this internet site is really informative ! Keep on putting up. mens suits for prom
2022年5月25日 21:40
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks 먹튀사이트 I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks 먹튀사이트
2022年5月26日 23:28
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks leedon green
2022年5月29日 20:33 I read that Post and got it fine and informative. Chillwell AC reviews
2022年5月30日 22:45
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks Chillwell AC review
2022年5月31日 01:01
Love to read it,Waiting For More new Update and I Already Read your Recent Post its Great Thanks. track a phone
2022年6月05日 21:56
Your blog provided us with valuable information to work with. Each & every tips of your post are awesome. Thanks a lot for sharing. Keep blogging.. ดูหนังออนไลน์
2022年6月08日 01:06
I love visiting sites in my free time. I have visited many sites but did not find any site more efficient than yours. Thanks for the nudge! ลิงค์ทางเข้าสมัครเล่นยูฟ่าสล็อต
2022年6月22日 05:42
Cool you scratch, the data is genuinely salubrious further boggling, I'll give you an interface with my scene. Mystic Meg
2022年6月27日 18:15
I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks <a href="https://marketingacademy.bg/index.php?q=read_news&id=719">seo</a>
2022年6月30日 22:05
Employment Insurance Benefit is a program, which gives income support for a specific time period. It is given to people who are employed, but have a long gap of unemployment due to health problem or pregnancy or guardianship, or to someone who is taking care of an immediate family member on the verge of death. The benefit includes regular wages, which can fulfill the basic requirements of living. ใบขับขี่ แท็กซี่
2022年7月04日 17:34
<a href="https://heylink.me/officialsensasional77">SENSATIONAL77</a>
https://m5.gs/R0RFc2
2022年7月04日 17:35
https://heylink.me/officialsensasional77
2022年7月04日 18:10
Your region further more each else volume is so staggering further obliging It picks me happen for retreat join. I will rapidly get your rss channel to remain showed concerning any updates. 2022 Tundra
2022年7月31日 14:04
We all know how trustworthy Maruti service is and there are millions of cars that are sold by this company not just in India but all across the world which makes them more reliable. At the same time, as a company they also have their own Insurance for every car they sell and put on the road for travel. Even if you don’t have a car from their company you can still buy Insurance policy for your vehicle. Maruti Insurance It is towards Maruti Insurance Renewal in online from Brooking service providing no claim bonus on policies. All good things come to an end at one point. It is the same for Insurance for any vehicle that you buy from any vendor or Insurance service provider.
2022年8月08日 22:10
The reason the dark web isn't used as much is because it's too hard to track down information. When we say "links", I don't necessarily mean the actual links but directories, blogs, forums etc. dark web links
2022年8月08日 22:24
They were just sitting there in your computer waiting to be clicked on. Now, if you had the patience to actually find them, they would be right there.dark web sites
2022年8月08日 22:39
Once you have done your research, you need to figure out what type of links you're looking for. For example, are you looking for backlinks or directory links? dark web
2022年8月18日 04:08
I can set up my new idea from this post. It gives in depth information. Thanks for this valuable information for all,.. North East Wedding Photographer
2022年9月29日 16:18
I think this is one of the most significant information for me. And i’m glad reading your article. But should remark on some general things, The web site style is perfect, the articles is really great : D. Good job, cheers ParaGard IUD removal complications