Spring Boot基础-RESTfull API简单项目的快速搭建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot基础-RESTfull API简单项目的快速搭建相关的知识,希望对你有一定的参考价值。
Spring Boot基础教程1-Spring Tool Suite工具的安装
Spring Boot基础教程2-RESTfull API简单项目的快速搭建
Spring Boot基础教程3-配置文件详解:Properties和YAML
Spring Boot基础教程5-日志配置-logback和log4j2
源码地址:https://github.com/roncoo/spring-boot-demo
一、搭建一个简单的RESTfull API接口项目
1、spring-boot-starter-web的引入,其依赖包的学习
2、spring-boot-devtools的引入,其依赖包的学习
3、代码的实现
4、运行项目
直接运行main方法或者使用maven命令: spring-boot:run
测试: http://localhost:8080/index
带参数:http://localhost:8080/index/get?name=wujing
带参数有中文:http://localhost:8080/index/get?name=无境
url测试:http://localhost:8080/index/get/1/wujing
url测试:http://localhost:8080/index/get/1/无境
5.打包
命令: clean package
6.运行命令: java –jar roncoo-education-0.0.1-SNAPSHOT.jar
以上是关于Spring Boot基础-RESTfull API简单项目的快速搭建的主要内容,如果未能解决你的问题,请参考以下文章
webservice--cxf和spring结合,发布restFull风格的服务
nginx代理转发url接口请求路径到spring boot后端实现真正响应