一、概念
Gradle是一个基于Apache Ant和Apache Maven概念的项目自动化构建开源工具,是一个基于JVM的构建工具,是一款通用灵活的构建工具,支持maven, Ivy仓库,支持传递性依赖管理,而不需要远程仓库或者是pom.xml和ivy.xml配置文件,基于Groovy,build脚本使用Groovy编写,抛弃了基于XML的各种繁琐配置。
Gradle包含了所有项目构建功能,可以进行依赖、打包、部署、发布、各种渠道的差异管理等工作。
Gradle配置使用DSL(domain specific language)特定领域语言(常见DSL有xml、html等,与通用编程语言的区别是,求专不求全,解决特定问题)即很强的语义表现力,同时自身也具备一定的逻辑,其语言能力介于配置文件与编程语言之间,即:配置文件 < DSL < 编程语言。
Groovy是一种基于JVM的敏捷开发语言,可以与Java完美结合,而且可以使用Java所有的库,语法上支持动态类型、闭包等新一代语言特性,既支持面向对象编程也支持面向过程编程。鉴于 Groovy 动态特性和元编程能力,其很适合作为 DSL 底层的解析语言。
Groovy不是 DSL,而是通用的编程语言,但 Groovy却对编写出一个全新的 DSL提供了良好的支持,于是在gradle中使用Groovy作为gradle DSL的底层实现。
二、安装设置
1,Gradle基于JVM运行,所以操作系统中必须先安装JRE或JDK才行。
2,将下载好的gradle下bin目录添加到系统环境变量path中。
3,将gradle根目录添加到系统环境变量GRADLE_HOME中。
4,将maven的repository目录设置到系统环境变量GRADLE_USER_HOME中。此为设置本地仓库地址,如果不配置,默认会在用户目录下创建.gradle的目录作为本地仓库。
三、语法规则
Gradle项目的目录结构与maven项目的目录结构基本一致,只是配置文件变为build.gradle和setting.gradle两个。
build.gradle为具体设置的配置文件,setting.gradle为配置包含多少个子module。
build.gradle
1 // buildscript 代码块中脚本优先执行
2 buildscript {
3 // ext 用于定义动态属性
4 ext {
5 springBootVersion = '1.5.2.RELEASE'
6 }
7
8 // 自定义 Thymeleaf 和 Thymeleaf Layout Dialect 的版本
9 ext['thymeleaf.version'] = '3.0.3.RELEASE'
10 ext['thymeleaf-layout-dialect.version'] = '2.2.0'
11
12 // 自定义 Hibernate 的版本
13 ext['hibernate.version'] = '5.2.8.Final'
14
15 // 使用了 Maven 的中央仓库(你也可以指定其他仓库)
16 repositories {
17 //mavenCentral()
18 maven {
19 url 'http://maven.aliyun.com/nexus/content/groups/public/'
20 }
21 }
22
23 // 依赖关系
24 dependencies {
25 // classpath 声明说明了在执行其余的脚本时,ClassLoader 可以使用这些依赖项
26 classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
27 }
28 }
29
30 // 使用插件
31 apply plugin: 'java'
32 apply plugin: 'eclipse'
33 apply plugin: 'org.springframework.boot'
34
35 // 打包的类型为 jar,并指定了生成的打包的文件名称和版本
36 jar {
37 baseName = 'springboot-test'
38 version = '1.0.0'
39 }
40
41 // 指定编译 .java 文件的 JDK 版本
42 sourceCompatibility = 1.8
43
44 // 默认使用了 Maven 的中央仓库。这里改用自定义的镜像库
45 repositories {
46 //mavenCentral()
47 maven {
48 url 'http://maven.aliyun.com/nexus/content/groups/public/'
49 }
50 }
51
52 // 依赖关系
53 dependencies {
54 // 该依赖对于编译发行是必须的
55 compile('org.springframework.boot:spring-boot-starter-web')
56 // 添加 Thymeleaf 的依赖
57 compile('org.springframework.boot:spring-boot-starter-thymeleaf')
58 // 添加 Spring Security 依赖
59 compile('org.springframework.boot:spring-boot-starter-security')
60 // 添加 Spring Boot 开发工具依赖
61 //compile("org.springframework.boot:spring-boot-devtools")
62 // 添加 Spring Data JPA 的依赖
63 compile('org.springframework.boot:spring-boot-starter-data-jpa')
64 // 添加 MySQL连接驱动 的依赖
65 compile('mysql:mysql-connector-java:6.0.5')
66 // 添加 Thymeleaf Spring Security 依赖,与 Thymeleaf 版本一致都是 3.x
67 compile('org.thymeleaf.extras:thymeleaf-extras-springsecurity4:3.0.2.RELEASE')
68 // 添加 Apache Commons Lang 依赖
69 compile('org.apache.commons:commons-lang3:3.5')
70 // 该依赖对于编译测试是必须的,默认包含编译产品依赖和编译时依
71 testCompile('org.springframework.boot:spring-boot-starter-test')
72 }