Spring Boot学习笔记

Posted bee-home

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot学习笔记相关的知识,希望对你有一定的参考价值。

Rest的理解

PS : 因为REST并不是一种具体的技术,也不是一种具体的规范,REST其实是一种内涵非常丰富的架构风格。

技术分享图片

PS:spring mvc和spring boot没有直接的联系

技术分享图片

技术分享图片

1.构建项目

技术分享图片

技术分享图片

技术分享图片

技术分享图片

删除红色文件

技术分享图片

启动项目

1.第一种方式启动

技术分享图片

 

package com.bee.girl;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping(value = "/hello",method = RequestMethod.GET)
    public String say(){
        return  "hello,springboot!!!";
    }
}

技术分享图片

 

 2.第二种方式启动

技术分享图片

 

以上是关于Spring Boot学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot学习笔记

Spring boot 学习笔记

Spring Boot 学习笔记一(Spring Boot 介绍)

spring boot学习笔记

Spring Boot学习笔记——Spring Boot与Redis的集成

Spring Boot 学习笔记