SpringBoot环境搭建

时间:2023-12-11 20:51:44

创建 maven 项目 , 选择的打包类型为 jar 类型

自己构建 SpringBoot 项目时 , 要继承 SpringBoot 的父项目 , 这里用的版本是 2.1.4

SpringBoot环境搭建

点击 Finish , 完成项目的创建 , 目录结构如下

SpringBoot环境搭建

在 pom.xml 文件中添加 SpringBoot 启动器

<dependencies>
  <!-- SpringBoot启动器 -->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
</dependencies> 

创建 SpringBoot 启动器类

这里要注意 , 启动器要和 Controller 放在同一包下 , 或者是放在 Controller 所在包的上级包中

编写启动类代码

package magical;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {
  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }
}

创建 Controller 类 , 编写 Controller 类中的代码

package magical.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class DemoController {

  @RequestMapping("/hello")
  @ResponseBody
  public String hello() {
    return "Hello,World";
  }
}

运行 DemoApplication 类
在控制台的提示信息中可以看到端口号

SpringBoot环境搭建

启动成功后 , 在浏览器中进行测试

SpringBoot环境搭建