一、新建一个maven项目

搭建简单的SpringBoot开发环境_第1张图片


二、在pom.xml 文件中加入如下配置

  4.0.0

  com.bt.com.cn

  bt-springboot

  0.0.1-SNAPSHOT

  bt-springboot

  bt-springboot


org.springframework.boot

spring-boot-starter-parent

2.0.3.RELEASE


UTF-8

UTF-8

1.8


org.springframework.boot

spring-boot-starter


org.springframework.boot

spring-boot-starter-test

test

        org.springframework.boot

        spring-boot-starter-web

 



org.springframework.boot

spring-boot-maven-plugin


                true


           


三、在src/main/java 下新建一个启动类

package com.batian;


import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;


@SpringBootApplication

public class App {

public static void main(String[] args) {

SpringApplication.run(App.class, args);

}

}

注意:在类名上加上@SpringBootApplication 这个注解,而且只会扫描当前类所在包及子包,因此需要注意该启动类的位置


四、新建一个controller 测试类

搭建简单的SpringBoot开发环境_第2张图片


五、运行启动类

搭建简单的SpringBoot开发环境_第3张图片


六、启动成功后,在浏览器中输入http://127.0.0.1:8080/getUserInfo

搭建简单的SpringBoot开发环境_第4张图片

此时springboot环境已经搭建完毕