springboot极简入门demo

一.创建springboot模块

springboot极简入门demo_第1张图片 springboot极简入门demo_第2张图片

二.工程搭建

1.pom文件 引入最小依赖



    
        springboot-demo
        com.et
        1.0-SNAPSHOT
    
    4.0.0


    com.et59.demo
    demo


    
        8
        8
    
    


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


        
            org.springframework.boot
            spring-boot-autoconfigure
        




    

2.编写返回HelloWorld的Controller

package com.et.demo.controller;


import java.util.HashMap;
import java.util.Map;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HelloWorldController {
    @RequestMapping("/hello")
    @ResponseBody
    public Map showHelloWorld(){
        Map map = new HashMap<>();
        map.put("msg", "HelloWorld");
        return map;
    }
}

3.配置文件

application.yaml

server:
  port: 8088

4.应用启动类

package com.et.demo;


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


@SpringBootApplication
public class DemoApplication {


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

三.验证服务是否正常

3.1启动服务

springboot极简入门demo_第3张图片

3.2打开浏览器验证

输入url http://127.0.0.1:8088/hello response:

{"msg":"HelloWorld"}

总结

这就是SpringBoot的helloworld的入门程序,是不是特别简单,相比以前的开发少了很多的配置,只需要在pom.xml中添加一个web的启动器即可完成所有配置  

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