IDEA搭建springBoot方式二

1.新建项目

IDEA搭建springBoot方式二_第1张图片
IDEA搭建springBoot方式二_第2张图片
IDEA搭建springBoot方式二_第3张图片
IDEA搭建springBoot方式二_第4张图片

2.写controller

IDEA搭建springBoot方式二_第5张图片

package xiaoliu.springboot04.controller;

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

@Controller
public class HelloController {
     

    @RequestMapping("hello")
    @ResponseBody
    public String hello(){
     
        return "这是搭建springBoot第二种方式";
    }
}

3.运行

IDEA搭建springBoot方式二_第6张图片

4.浏览器输入localhost:8080/hello访问项目

IDEA搭建springBoot方式二_第7张图片

两种搭建springBoot方式对比

第一种方式
需要我们自己加入pom依赖
IDEA搭建springBoot方式二_第8张图片
自己写启动spring项目的类
IDEA搭建springBoot方式二_第9张图片
第二种方式
不需要我们自己添加pom依赖,而且启动spring的类也会自动生成,我们只需要定义controller即可

IDEA搭建springBoot方式二_第10张图片

第二种方式相比第一种搭建springBoot方式更加简单快捷

你可能感兴趣的:(springBoot,spring,boot,spring,java)