Spring Boot 学习笔记(-)

来源:互联网 发布:java 小游戏源代码 编辑:程序博客网 时间:2024/05/16 13:52

初始化环境

jdk8+maven3.5.0

开发工具IDEA
1.下载完成maven后修改 复制 */conf/settings.xml 到.m2/settings.xml
添加如下代码(加快构建maven项目使用阿里源):

 <mirror>        <id>nexus-aliyun</id>        <mirrorOf>*</mirrorOf>        <name>Nexus aliyun</name>        <url>http://maven.aliyun.com/nexus/content/groups/public</url>    </mirror> 

项目结构图:
这里写图片描述

注解分析:

@RestController

官方文档:
@RestController is a stereotype annotation that combines @ResponseBody and @Controller.

@PathVariable

获取url中的数据

@Requestaram

获取请求参数的值

@GetMapping

组合注解

原创粉丝点击