SpringBoot指南|第二篇:构建一个RESTful Web服务
本文将使用SpringBoot引导快速创建一个“Hello World”的RESTful Web服务。
目录
- 1.简介
- 2.环境准备
- 3.使用Maven构建项目
- 4.构建一个RESTful Web服务
- 5.参考资料
- 6.结语
1.简介
上一篇文章讲了如何快速构建一个SpringBoot项目,本文主要是讲如何快速构建一个简单的RESTful Web服务。
2.环境准备
您需要:
· 15分钟左右
· IDEA开发工具
· JDK 1.8及以上
· Maven 3.0及以上
3.使用Maven构建项目
打开Idea -> new Project ->Spring Initializr -> 填写group、artifact -> 钩上web(开启web功能)-> 点下一步就行了。
官方快速构建地址:http://start.spring.io/
具体构建可以查看第一章内容哦-.-。
4.构建一个RESTful Web服务
第一步:创建一个com.example.demo.Greeting类,此类用于接收浏览器输入内容,类如下:
package com.example.demo;
/**
* model
*
* @author yclimb
* @date 2018/2/24
*/
public class Greeting {
/**
* 编号,自增量
*/
private final long id;
/**
* 内容
*/
private final String content;
public Greeting(long id, String content) {
this.id = id;
this.content = content;
}
public long getId() {
return id;
}
public String getContent() {
return content;
}
}
第二步:创建一个com.example.demo.GreetingController类,此类用于处理浏览器发送请求,类如下:
package com.example.demo;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.concurrent.atomic.AtomicLong;
/**
* GreetingController
*
* @author yclimb
* @date 2018/2/24
*/
@RestController
public class GreetingController {
/**
* 模版语句,%s 表示可替换字符串
*/
private static final String template = "Hello, %s!";
/**
* 数字对象,用于自增id
*/
private final AtomicLong counter = new AtomicLong();
/**
* hello restful web
* @param name 名字
* @return 对象
*/
@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
// counter.incrementAndGet() 此语句返回自增量数字,1.2.3.4...
// String.format(template, name) 此语句用于替换字符串,将 %s 替换为 name
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}
第三步:启动SpringBoot项目,进入idea中com.example.demo.DemoApplication启动类,右键选择“Run ‘DemoApplication’”即可。
第四步:运行项目,使用浏览器访问 http://127.0.0.1:8080/greeting 可以查询默认JSON格式返回值;
如果想要手动传入 name 属性,可以访问 http://127.0.0.1:8080/greeting?name=zhangsan 即可。
5.参考资料
本文官方文档:Building a RESTful Web Service
快速构建SpringBoot项目:SpringBoot指南|第一篇:构建第一个SpringBoot项目
6.结语
到此本文就结束了,非常简单的一个Restful Web应用就OK啦,欢迎大家继续关注更多SpringBoot案例。
扫描下面二维码,关注我的公众号哦!!!