创建最简springboot项目

Posted lichengbei

tags:

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

lichengbei

2019-12-21

登录官网https://start.spring.io/填写基本参数,下载自动生成的项目文件

 技术图片

 

解压下载好的项目文件,并用idea打开,配置好maven,写一个controller,运行xxxApplication即可

 技术图片

 

WebController.java的内容如下:

package com.forest.fox.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@ResponseBody
public class WebController {
    /**
     * 测试:http://127.0.0.1:8080/hello-world
     *
     * @return 测试数据
     */
    @RequestMapping(value = "/hello-world", method = RequestMethod.GET)
    public String helloWorld() {
        return "Hello World!";
    }
}

 

使用浏览器测试:

 技术图片

 

到此,一个最简单的springboot项目已经搭建完成了。

以上是关于创建最简springboot项目的主要内容,如果未能解决你的问题,请参考以下文章

springboot:springboot+mybatis多数据源最简解决方案

springboot--springboot+mybatis多数据源最简解决方案

SpringBoot :springboot + mybatis 多数据源最简解决方案

SpringBoot ( 七 ) :springboot + mybatis 多数据源最简解决方案

禅道的最简使用

SpringBoot入门五,添加pagehelper分页插件支持最简配置