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