一、新建一个maven项目

image.png


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

<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>com.bt.com.cn</groupId>

  <artifactId>bt-springboot</artifactId>

  <version>0.0.1-SNAPSHOT</version>

  <name>bt-springboot</name>

  <description>bt-springboot</description>


<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>2.0.3.RELEASE</version>

<relativePath/> <!-- lookup parent from repository -->

</parent>


<properties>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<java.version>1.8</java.version>

</properties>


<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter</artifactId>

</dependency>


<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<scope>test</scope>

</dependency>

<!-- web 支持 -->

<dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-web</artifactId>

 </dependency>


</dependencies>


<build>

<plugins>

<plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

<configuration>


                <fork>true</fork>


           </configuration>

</plugin>

</plugins>

</build>

</project>


三、在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 测试类

image.png


五、运行启动类

image.png


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

image.png

此时springboot环境已经搭建完毕