第一个SpringBoot应用
在这里我选择的开发工具是IntelliJ IDEA。
在开发前,你需要把环境都装好,Maven,JDK。
按照下面的图片步骤,即可建好一个helloword项目了。
勾选中web选项的web
这三个目录和文件没什么用,你可以删除。
第一次建springBoot项目可能需要时间有点久,别急,在下载jar包呢。
新建一个类:
package cn.chenhaoxiang; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * Created with IntelliJ IDEA. * User: 陈浩翔. * Date: 2017/12/24. * Time: 下午 10:44. * Explain: */ @RestController public class HelloController { @RequestMapping(value = "/hello",method = RequestMethod.GET) public String say() { return "Hello Spring Boot!"; } }
第一种运行方式
也是最常用的,最简单的方式。
运行后打开地址访问:
第二种运行方式
命令行下cd 到项目目录。
运行:mvn pring-boot:run
如无法执行,请先把maven添加到环境变量中
即可启动成功:
第三种启动方式
也是命令行方式,cd到项目根目录
首先执行:
mvn install
编译后再执行:
cd target
然后找到该文件名:
执行:
java -jar hello-0.0.1-SNAPSHOT.jar
本篇只是简单的创建了一下SpringBoot项目.
与三种启动方式
GITHUB源码下载地址: 【点我进行下载】