1、SpringBoot的起步练习

1、新建一个SpringBoot的项目

第一步.png
第二步.png
  • 这边的包名可根据自己修改


    第三步.png
  • 依赖可选可不选,尽量后期自己加


    第四步.png
  • 核对名称


    第五步.png
  • 建好之后左右如下图所示


    第六步.png

2、起步小练习

  • pom.xml添加依赖


    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
         
    
    com.springboot
    quickstart
    0.0.1-SNAPSHOT
    quickstart
    Demo project for Spring Boot

    
        UTF-8
        1.8
    

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

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



  • HelloController类
package com.springboot.quickstart.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

/**
 *SpringBoot的第一个RESTful请求
 */
@RestController
public class HelloController {

    @RequestMapping(value = "/hello",method = RequestMethod.GET)
    public String getHello(){
        return "Hello,Spring Boot";
    }
}
  • Application启动主类
package com.springboot.quickstart;

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

/**
 * SpringBoot的启动主类
 */
@SpringBootApplication
public class QuickstartApplication {

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

}
  • 看到这两行代表运行成功


    Snipaste_2019-03-18_17-28-31.png
  • 之后在postman中运行,如图所示


    Snipaste_2019-03-18_17-30-43.png

你可能感兴趣的:(1、SpringBoot的起步练习)