1、安装 Gradle
2、使用 idea 创建一个 Gradle 项目
3、 build.gradle 配置文件
4、gradle 本地仓库
5、查找 jar 依赖的导入信息(坐标)
1、安装 Gradle <--返回目录
下载地址http://services.gradle.org/distributions/ ,下载你所需要对应的版本,我这里下载的是 gradle-4.5.1-all.zip。下载后解压到你想要的目录即可,然后设置环境变量:
配置gradle默认的仓库地址(和maven不太一样)
测试环境变量是否配置成功:
2、使用 idea 创建一个 Gradle 项目 <--返回目录
双击 war
打包完成之后的 war 文件会在
然后把war放入对应的tomcat目录即可。
3、 build.gradle 配置文件 <--返回目录
build.gradle 文件是配置项目中要使用的库的文件。它和 Maven 工程中的 pom.xml 相同。
添加 commons-lang3 包
plugins { id 'java' id 'war' } group 'org.oy' version '0.1' sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { testCompile group: 'junit', name: 'junit', version: '4.11' testCompile group: 'junit', name: 'junit', version: '4.12' compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0' }
依赖:
使用 commons-lang3
package com.oy; import org.apache.commons.lang3.StringUtils; public class demo { public static void main(String[] args) { String text1 = "a12340"; String text2 = "1234"; boolean result1 = StringUtils.isNumeric(text1); boolean result2 = StringUtils.isNumeric(text2); System.out.println(text1 + " is a numeric? " + result1); System.out.println(text2 + " is a numeric? " + result2); } }
4、gradle 本地仓库 <--返回目录
默认情况下,Gradle软件将通过 Eclipse 下载到C:/Users/{username}/.gradle目录中。由于配置了gradle 本地仓库的地址为 d: epogradle,
5、查找 jar 依赖的导入信息(坐标) <--返回目录
参考: