使用spring initializr ( 4.快速创建springboot工程 )(入门结束)

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第1张图片

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第2张图片

 

 使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第3张图片

组织id  com.tabctrlshift

模块id  spring-boot-01-helloworld-quick

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第4张图片

可以看看下面的东西

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第5张图片

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第6张图片

最终只选择web

选择我们需要的模块即可

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第7张图片

wokao,就这样联网自动生成了!

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第8张图片

用不上的删掉

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第9张图片

 

 选择弹出的自动导入。

万一没有选中这里有个刷新图标手动刷新导入

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第10张图片

新建一个HelloController类

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第11张图片

package com.tabctrlshift.springboot.controller;

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

////这个类的所有方法返回数据直接写给浏览器,如果是对象转为json数据
//@ResponseBody
//@Controller
//以上两者的合并写法
@RestController
public class HelloController {

//    要写给浏览器
//    @ResponseBody
//    处理hello请求
    @RequestMapping("/hello")
    public String Hello(){
        return "hello";
    }
}

  使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第12张图片

ok。

主程序已经写好了,只需要写业务逻辑 。




 

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第13张图片

如果用sts就是生成spring starter project

使用spring initializr ( 4.快速创建springboot工程 )(入门结束)_第14张图片

 

转载于:https://www.cnblogs.com/tabCtrlShift/p/9069937.html

你可能感兴趣的:(使用spring initializr ( 4.快速创建springboot工程 )(入门结束))