zoukankan      html  css  js  c++  java
  • springboot入门

    1、创建Maven工程,必须继承spring-boot-stater-parent工程

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.2.RELEASE</version>
    </parent>

    2、编写Controller实现业务逻辑

    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import java.util.HashMap;
    import java.util.Map;
    
    @RestController
    public class HelloController {
        @RequestMapping("/hello")
        public Map sayWeiWu(){
            Map map = new HashMap();
            map.put("weiwu","java");
            return map;
        }
    }

    3、编写启动类,添加一个main方法,添加注解@SpringBootApplication

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class WeiWuApplication {
        public static void main(String[] args) {
            SpringApplication.run(WeiWuApplication.class,args);
        }
    }

    4、启动main方法

  • 相关阅读:
    今日进度
    今日进度
    每周总结
    今日进度
    今日进度
    今日进度
    flask展示Excel
    ubuntu 相关
    python解析xml三种方法【ElementTree】【DOM】【SAX】
    Lambda实现if...elif...else【三元表达式】
  • 原文地址:https://www.cnblogs.com/-jian/p/11399911.html
Copyright © 2011-2022 走看看