Spring boot 1: 使用IDEA创建Spring boot项目
Posted 一亩三分地
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 1: 使用IDEA创建Spring boot项目相关的知识,希望对你有一定的参考价值。
项目用到的环境:
- Windows 10
- JDK8
- IntelliJ IDEA 2017.1.3
- Apache Tomcat 8
- Maven 3.3.3
使用IDEA新建spring boot项目
新建项目
选择类型为Spring Initializer.
填入相关的项目信息
选择denpendcy
接着下一步, 选择web.
选择路径
再下一步, 选择项目的路径, 点击完成
新建成的项目的文件目录结构如下图:
第一个Spring boot项目
pom.xml如下所示:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
其中, spring-boot-starter-web是支持web的模块, spring-boot-starter-test是支持测试的模块.
添加一个HelloWorldController如下:
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorldController {
@RequestMapping("/")
public String index(){
return "Hello World";
}
}
@RestController表示里边的方法都以json格式输出, 无需再添加额外的json配置.
启动程序
点击Shift + F10 或者直接点击运行, 待项目启动成功后, 访问http://localhost:8080
如图即表示第一个spring boot项目启动成功.
以上是关于Spring boot 1: 使用IDEA创建Spring boot项目的主要内容,如果未能解决你的问题,请参考以下文章
从 IntelliJ Idea 运行/调试 Spring Boot 应用程序
使用IntelliJ IDEA创建Spring Boot项目
Spring Boot 使用IntelliJ IDEA创建一个web开发实例