安装Gradle,使用Gradle编译项目并且将编译好的项目导入到eclipse中
程序员文章站
2022-03-26 18:26:28
...
安装Gradle
1.https://services.gradle.org/distributions/点击网址下载all.zip
2.新建环境变量GRADLE_HOME ,配置为你安装GRADLE的目录
修改环境变量Path,在后面+上 %GRADLE_HOME%\bin
win+R
打开命令行,输入gradle -v
则安装成功
使用Gradle编译项目
打开网址https://start.spring.io/
填写项目名称以及添加web依赖
点击
下载
将下载的安装包添加到工程中,解压
开始编译,进入结解压目录打开命令行界面
输入gradle build
下图为编译好的项目
将编译好的项目导入到eclipse中
file-import-Gradle
Browse项目目录然后finish
时间会比较久,20分钟左右
右键Run As java application如下:
tomcat也是运行了的,网页访问http://localhost:8080/
书写controller对SpringBoot说你好
创建包
创建类
package com.sc.myfirstspringboot.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/hello.action")
public String test() {
return "HelloSpringBoot";
}
}
右键Run As java application,去页面访问http://localhost:8080/hello.action显示
上一篇: 一篇文章看懂gradle
下一篇: 『题解』洛谷P3958 奶酪