自学内容网 自学内容网

SpringBoot的快速入门

Maven

Maven可以方便管理依赖的 Jar 包

IDEA 自带Maven,也可以选择自己安装
安装Maven:https://blog.csdn.net/qq_59636442/article/details/142314019

创建项目

通过Spring Initializr 快速创建项目:https://start.springboot.io/
我的项目名叫blog,可以自己修改
在这里插入图片描述

创建HelloController

在这里插入图片描述

package com.example.blog;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;


// 注解说明:处理 Http 请求
@RestController
public class HelloController {

    //    路由请求 可以设置各种操作方法
    @RequestMapping(value="/hello",method = RequestMethod.GET)
    // @GetMapping、@PostMapping、@PutMapping、@DeleteMapping 是 @RequestMapping 的子集
    // 选择一种使用
    // @GetMapping("/hello")
    public String hello() {
        return  "Hello World!";
    }
}

浏览器访问:http://localhost:8080/hello
可以看到
在这里插入图片描述

下一步(MySQL的增删改查)

SpringBoot MySQL的增删改查:https://blog.csdn.net/qq_59636442/article/details/143890303


原文地址:https://blog.csdn.net/qq_59636442/article/details/143890041

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!