spring boot 简单入门案例

Spring Boot ::   2.2.7

jdk :1.8

项目工程目录 

spring boot 简单入门案例_第1张图片

一、新建工程

     pom.xml文件配置分为三部分配置,

第一:引入父坐标

 
        org.springframework.boot
        spring-boot-starter-parent
        2.2.7.RELEASE
   

第二步:为了让Spring Boot帮我们完成各种自动配置,我们必须引入Spring Boot提供的自动配置依赖,我们称为 启动器 。因为我们是web项目,这里我们引入web启动器,在 pom.xml 文件中加入如下依赖

 
       
            org.springframework.boot
            spring-boot-starter-web
       

   

第三:管理jdk版本

 如果我们想要修改Spring Boot项目的jdk版本,只需要简单的添加以下属性即可,如果没有需求,则不添加。

   
        1.8
   

    
    
        1.8
        8
        8
    

    
        org.springframework.boot
        spring-boot-starter-parent
        2.2.7.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    
    

   整个文件配置



    4.0.0

    org.example
    sringboot_demo
    1.0-SNAPSHOT

    
    
        1.8
        8
        8
    

    
        org.springframework.boot
        spring-boot-starter-parent
        2.2.7.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    
    

二、创建Application类文件

package springbootdemo;

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

@SpringBootApplication
public class Application {

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

}

三、创建Controller文件

package springbootdemo.controller;


import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello(){
        return "hello spring boot";
    }

}

运行之后

在浏览器输入http://localhost:8080/hello

你可能感兴趣的:(后端java,springboot,spring,boot,java,数据库)