springBoot之如何搭建第一个简单的springBoot项目(Hello World)
前言
在上一篇文章中我们简单的介绍了什么是springBoot,本次我将带领大家学习如何搭建一个简单的Hello world项目。
环境准备
在搭建之前我们先进行一下环境的准备,本章环境如下:
–jdk1.8
:Spring Boot 推荐jdk1.7及以上;java version “1.8.0_191”–maven3.x
:maven 3.3以上版本;Apache Maven 3.6.3–IntelliJIDEA2020
:IntelliJ IDEA 2020.3–SpringBoot1.5.9.RELEASE
:1.5.9
项目搭建
1. 创建一个maven项目
如果环境已经准备就绪,下面我们就开始搭建一个spring-boot-01-helloworld项目。在搭建项目之前我们首要要搭建一个支持maven的环境以及idea的配置,然后在搭建一个maven的基础项目。
具体搭建方式可参考文章:https://blog.csdn.net/qq_33631756/article/details/117257105
需要注意的是在填写项目名称的时候,我们需要填写为spring-boot-01-helloworld
。
2. 导入Spring Boot 相关依赖
依赖如下:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
最后获得的pom文件代码:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.sunny.springBoot</groupId>
<artifactId>spring-boot-01-helloworld</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>
3. 编写Spring Boot 的启动主程序
我们在pom文件导入好spring boot的依赖后,编写一个叫HelloWorldMainApplication.java的主程序启动类,代码如下:
package org.sunny.springBoot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @author can he
* @description
* @date 2021/5/25 15:04
*/
/**
* @SpringBootApplication 来标注一个主程序类,说明这是一个Spring Boot应用
*/
@SpringBootApplication
public class HelloWorldMainApplication {
public static void main(String[] args) {
// Spring应用启动起来
SpringApplication.run(HelloWorldMainApplication.class, args);
}
}
@SpringBootApplication
注解:用于标注这个类是一个主程序类,说明这是一个Spring Boot应用
4. 编写测试相关的controller代码
package org.sunny.springBoot.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author can he
* @description
* @date 2021/5/25 15:08
*/
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "Hello World!";
}
}
5. 启动程序
选择主启动类的代码,鼠标右键,选择运行
运行后发现tomcat默认端口8080,表示项目启动成功
6. 浏览器访问测试
打开浏览器访问url:http://localhost:8080/hello 返回Hello World表示我们成功的创建了一个简单的spring boot的项目。
以上,我们就完成了一个简单的spring boot项目的搭建。
上一篇: 爱说谎已然成为一种思想
下一篇: 挑橘子