Spring-boot通过向导快速创建Spring-boot项目

Posted wujianqinjian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-boot通过向导快速创建Spring-boot项目相关的知识,希望对你有一定的参考价值。

通过向导快速创建Spring-boot项目
创建步骤:
  1. 选择Spring Initializr

  2. 填写组织和模块名

  3. 选择对应的模块
    注:这里左侧的模块比较多,玩家可以根据自己的实际需要自由选择,此处暂时选择web

  4. 完成

  5. 等待项目自动下载相关依赖完成项目创建
    注:项目类型为maven的话,需要配置阿里云仓库才不会特别慢
    setting.xml

alimaven aliyun maven http://maven.aliyun.com/nexus/content/groups/public/ central ```
  1. 编写测试类

    package com.wujianqinjian.Controller;
    import org.springframework.web.bind.annotation.Mapping;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    /**
     * Created by JianH on 2019/11/15.
     */
    @RestController
    public class HelloController
    {
        @RequestMapping("/hello")
        public String hellofanrui(){
            return "你好,樊瑞";
        }
    }
    
  2. 启动项目,浏览器访问127.0.0.1:8080

以上是关于Spring-boot通过向导快速创建Spring-boot项目的主要内容,如果未能解决你的问题,请参考以下文章

spring-boot学习一:使用Spring Initializr快速创建Spring boot项目

使用向导快速创建spring boot应用

2.使用向导快速创建SpringBoot应用

spring-boot第一章:快速开始

spring-boot入门

springboot学习笔记