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方法

  • 相关阅读:
    python:HTML转义
    Python 安装 MySQLdb
    C# 获取当前路径方法
    配置 vim Python IDE 开发环境
    python:HTML转义
    Python list去重
    源码探秘
    加号的作用
    多态练习
    在web service用Cache要导入System.Web.HttpRuntime
  • 原文地址:https://www.cnblogs.com/-jian/p/11399911.html
Copyright © 2011-2022 走看看