摘要:二結(jié)構(gòu)這個(gè)工程會(huì)對(duì)城市進(jìn)行管理實(shí)現(xiàn)操作。負(fù)責(zé)將持久層數(shù)據(jù)操作相關(guān)的封裝組織,完成新增查詢刪除等操作。原因是,直接使用和是非阻塞寫法,相當(dāng)于回調(diào)方式。反應(yīng)了是的好處集合了非阻塞異步。其實(shí)是的一個(gè)補(bǔ)充。可以發(fā)布類型的元素。
摘要: 原創(chuàng)出處 https://www.bysocket.com 「公眾號(hào):泥瓦匠BYSocket 」歡迎關(guān)注和轉(zhuǎn)載,保留摘要,謝謝!
這是泥瓦匠的第102篇原創(chuàng)
03:WebFlux Web CRUD 實(shí)踐文章工程:
JDK 1.8
Maven 3.5.2
Spring Boot 2.1.3.RELEASE
工程名:springboot-webflux-2-restful
工程地址:見文末
一、前言上一篇基于功能性端點(diǎn)去創(chuàng)建一個(gè)簡(jiǎn)單服務(wù),實(shí)現(xiàn)了 Hello 。這一篇用 Spring Boot WebFlux 的注解控制層技術(shù)創(chuàng)建一個(gè) CRUD WebFlux 應(yīng)用,讓開發(fā)更方便。這里我們不對(duì)數(shù)據(jù)庫(kù)儲(chǔ)存進(jìn)行訪問(wèn),因?yàn)楹罄m(xù)會(huì)講到,而且這里主要是講一個(gè)完整的 WebFlux CRUD。
二、結(jié)構(gòu)這個(gè)工程會(huì)對(duì)城市(City)進(jìn)行管理實(shí)現(xiàn) CRUD 操作。該工程創(chuàng)建編寫后,得到下面的結(jié)構(gòu),其目錄結(jié)構(gòu)如下:
├── pom.xml ├── src │?? └── main │?? ├── java │?? │?? └── org │?? │?? └── spring │?? │?? └── springboot │?? │?? ├── Application.java │?? │?? ├── dao │?? │?? │?? └── CityRepository.java │?? │?? ├── domain │?? │?? │?? └── City.java │?? │?? ├── handler │?? │?? │?? └── CityHandler.java │?? │?? └── webflux │?? │?? └── controller │?? │?? └── CityWebFluxController.java │?? └── resources │?? └── application.properties └── target
如目錄結(jié)構(gòu),我們需要編寫的內(nèi)容按順序有:
對(duì)象
數(shù)據(jù)訪問(wèn)層類 Repository
處理器類 Handler
控制器類 Controller
三、對(duì)象新建包 org.spring.springboot.domain ,作為編寫城市實(shí)體對(duì)象類。新建城市(City)對(duì)象 City,代碼如下:
/** * 城市實(shí)體類 * */ public class City { /** * 城市編號(hào) */ private Long id; /** * 省份編號(hào) */ private Long provinceId; /** * 城市名稱 */ private String cityName; /** * 描述 */ private String description; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getProvinceId() { return provinceId; } public void setProvinceId(Long provinceId) { this.provinceId = provinceId; } public String getCityName() { return cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }
城市包含了城市編號(hào)、省份編號(hào)、城市名稱和描述。具體開發(fā)中,會(huì)使用 Lombok 工具來(lái)消除冗長(zhǎng)的 Java 代碼,尤其是 POJO 的 getter / setter 方法。具體查看 Lombok 官網(wǎng)地址:projectlombok.org。
四、數(shù)據(jù)訪問(wèn)層 CityRepository新建包 org.spring.springboot.dao ,作為編寫城市數(shù)據(jù)訪問(wèn)層類 Repository。新建 CityRepository,代碼如下:
import org.spring.springboot.domain.City; import org.springframework.stereotype.Repository; import java.util.Collection; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.atomic.AtomicLong; @Repository public class CityRepository { private ConcurrentMaprepository = new ConcurrentHashMap<>(); private static final AtomicLong idGenerator = new AtomicLong(0); public Long save(City city) { Long id = idGenerator.incrementAndGet(); city.setId(id); repository.put(id, city); return id; } public Collection findAll() { return repository.values(); } public City findCityById(Long id) { return repository.get(id); } public Long updateCity(City city) { repository.put(city.getId(), city); return city.getId(); } public Long deleteCity(Long id) { repository.remove(id); return id; } }
@Repository 用于標(biāo)注數(shù)據(jù)訪問(wèn)組件,即 DAO 組件。實(shí)現(xiàn)代碼中使用名為 repository 的 Map 對(duì)象作為內(nèi)存數(shù)據(jù)存儲(chǔ),并對(duì)對(duì)象具體實(shí)現(xiàn)了具體業(yè)務(wù)邏輯。CityRepository 負(fù)責(zé)將 Book 持久層(數(shù)據(jù)操作)相關(guān)的封裝組織,完成新增、查詢、刪除等操作。
這里不會(huì)涉及到數(shù)據(jù)存儲(chǔ)這塊,具體數(shù)據(jù)存儲(chǔ)會(huì)在后續(xù)介紹。
五、處理器類 Handler新建包 org.spring.springboot.handler ,作為編寫城市處理器類 CityHandler。新建 CityHandler,代碼如下:
import org.spring.springboot.dao.CityRepository; import org.spring.springboot.domain.City; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @Component public class CityHandler { private final CityRepository cityRepository; @Autowired public CityHandler(CityRepository cityRepository) { this.cityRepository = cityRepository; } public Monosave(City city) { return Mono.create(cityMonoSink -> cityMonoSink.success(cityRepository.save(city))); } public Mono findCityById(Long id) { return Mono.justOrEmpty(cityRepository.findCityById(id)); } public Flux findAllCity() { return Flux.fromIterable(cityRepository.findAll()); } public Mono modifyCity(City city) { return Mono.create(cityMonoSink -> cityMonoSink.success(cityRepository.updateCity(city))); } public Mono deleteCity(Long id) { return Mono.create(cityMonoSink -> cityMonoSink.success(cityRepository.deleteCity(id))); } }
@Component 泛指組件,當(dāng)組件不好歸類的時(shí)候,使用該注解進(jìn)行標(biāo)注。然后用 final 和 @Autowired 標(biāo)注在構(gòu)造器注入 CityRepository Bean,代碼如下:
private final CityRepository cityRepository; @Autowired public CityHandler(CityRepository cityRepository) { this.cityRepository = cityRepository; }
從返回值可以看出,Mono 和 Flux 適用于兩個(gè)場(chǎng)景,即:
Mono:實(shí)現(xiàn)發(fā)布者,并返回 0 或 1 個(gè)元素,即單對(duì)象
Flux:實(shí)現(xiàn)發(fā)布者,并返回 N 個(gè)元素,即 List 列表對(duì)象
有人會(huì)問(wèn),這為啥不直接返回對(duì)象,比如返回 City/Long/List。原因是,直接使用 Flux 和 Mono 是非阻塞寫法,相當(dāng)于回調(diào)方式。利用函數(shù)式可以減少了回調(diào),因此會(huì)看不到相關(guān)接口。反應(yīng)了是 WebFlux 的好處:集合了非阻塞 + 異步。
5.1 MonoMono 是什么? 官方描述如下:A Reactive Streams Publisher with basic rx operators that completes successfully by emitting an element, or with an error.
Mono 是響應(yīng)流 Publisher ,即要么成功發(fā)布元素,要么錯(cuò)誤。如圖所示:
Mono 常用的方法有:
Mono.create():使用 MonoSink 來(lái)創(chuàng)建 Mono
Mono.justOrEmpty():從一個(gè) Optional 對(duì)象或 null 對(duì)象中創(chuàng)建 Mono。
Mono.error():創(chuàng)建一個(gè)只包含錯(cuò)誤消息的 Mono
Mono.never():創(chuàng)建一個(gè)不包含任何消息通知的 Mono
Mono.delay():在指定的延遲時(shí)間之后,創(chuàng)建一個(gè) Mono,產(chǎn)生數(shù)字 0 作為唯一值
5.2 FluxFlux 是什么? 官方描述如下:A Reactive Streams Publisher with rx operators that emits 0 to N elements, and then completes (successfully or with an error).
Flux 是響應(yīng)流 Publisher ,即要么成功發(fā)布 0 到 N 個(gè)元素,要么錯(cuò)誤。Flux 其實(shí)是 Mono 的一個(gè)補(bǔ)充。如圖所示:
所以要注意:如果知道 Publisher 是 0 或 1 個(gè),則用 Mono。
Flux 最值得一提的是 fromIterable 方法。fromIterable(Iterable extends T> it) 可以發(fā)布 Iterable 類型的元素。當(dāng)然,F(xiàn)lux 也包含了基礎(chǔ)的操作:map、merge、concat、flatMap、take,這里就不展開介紹了。
六、控制器類 ControllerSpring Boot WebFlux 也可以使用自動(dòng)配置加注解驅(qū)動(dòng)的模式來(lái)進(jìn)行開發(fā)。
新建包目錄 org.spring.springboot.webflux.controller ,并在目錄中創(chuàng)建名為 CityWebFluxController 來(lái)處理不同的 HTTP Restful 業(yè)務(wù)請(qǐng)求。代碼如下:
import org.spring.springboot.domain.City; import org.spring.springboot.handler.CityHandler; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; @RestController @RequestMapping(value = "/city") public class CityWebFluxController { @Autowired private CityHandler cityHandler; @GetMapping(value = "/{id}") public MonofindCityById(@PathVariable("id") Long id) { return cityHandler.findCityById(id); } @GetMapping() public Flux findAllCity() { return cityHandler.findAllCity(); } @PostMapping() public Mono saveCity(@RequestBody City city) { return cityHandler.save(city); } @PutMapping() public Mono modifyCity(@RequestBody City city) { return cityHandler.modifyCity(city); } @DeleteMapping(value = "/{id}") public Mono deleteCity(@PathVariable("id") Long id) { return cityHandler.deleteCity(id); } }
這里按照 REST 風(fēng)格實(shí)現(xiàn)接口。那具體什么是 REST?
REST 是屬于 WEB 自身的一種架構(gòu)風(fēng)格,是在 HTTP 1.1 規(guī)范下實(shí)現(xiàn)的。Representational State Transfer 全稱翻譯為表現(xiàn)層狀態(tài)轉(zhuǎn)化。Resource:資源。比如 newsfeed;Representational:表現(xiàn)形式,比如用JSON,富文本等;State Transfer:狀態(tài)變化。通過(guò)HTTP 動(dòng)作實(shí)現(xiàn)。
理解 REST ,要明白五個(gè)關(guān)鍵要素:
資源(Resource)
資源的表述(Representation)
狀態(tài)轉(zhuǎn)移(State Transfer)
統(tǒng)一接口(Uniform Interface)
超文本驅(qū)動(dòng)(Hypertext Driven)
6 個(gè)主要特性:
面向資源(Resource Oriented)
可尋址(Addressability)
連通性(Connectedness)
無(wú)狀態(tài)(Statelessness)
統(tǒng)一接口(Uniform Interface)
超文本驅(qū)動(dòng)(Hypertext Driven)
具體這里就不一一展開,詳見 http://www.infoq.com/cn/artic...。
請(qǐng)求入?yún)ⅰilters、重定向、Conversion、formatting 等知識(shí)會(huì)和以前 MVC 的知識(shí)一樣,詳情見文檔:
https://docs.spring.io/spring...
一個(gè) CRUD 的 Spring Boot Webflux 工程就開發(fā)完畢了,下面運(yùn)行工程驗(yàn)證下。使用 IDEA 右側(cè)工具欄,點(diǎn)擊 Maven Project Tab ,點(diǎn)擊使用下 Maven 插件的 install 命令。或者使用命令行的形式,在工程根目錄下,執(zhí)行 Maven 清理和安裝工程的指令:
cd springboot-webflux-2-restful mvn clean install
在控制臺(tái)中看到成功的輸出:
... 省略 [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:30 min [INFO] Finished at: 2017-10-15T10:00:54+08:00 [INFO] Final Memory: 31M/174M [INFO] ------------------------------------------------------------------------
在 IDEA 中執(zhí)行 Application 類啟動(dòng),任意正常模式或者 Debug 模式。可以在控制臺(tái)看到成功運(yùn)行的輸出:
... 省略 2018-04-10 08:43:39.932 INFO 2052 --- [ctor-http-nio-1] r.ipc.netty.tcp.BlockingNettyContext : Started HttpServer on /0:0:0:0:0:0:0:0:8080 2018-04-10 08:43:39.935 INFO 2052 --- [ main] o.s.b.web.embedded.netty.NettyWebServer : Netty started on port(s): 8080 2018-04-10 08:43:39.960 INFO 2052 --- [ main] org.spring.springboot.Application : Started Application in 6.547 seconds (JVM running for 9.851)
打開 POST MAN 工具,開發(fā)必備。進(jìn)行下面操作:
新增城市信息 POST http://127.0.0.1:8080/city
獲取城市信息列表 GET http://127.0.0.1:8080/city
其他接口就不演示了。
八、總結(jié)這里,探討了 Spring WebFlux 的一些功能,構(gòu)建沒(méi)有底層數(shù)據(jù)庫(kù)的基本 CRUD 工程。為了更好的展示了如何創(chuàng)建 Flux 流,以及如何對(duì)其進(jìn)行操作。下面會(huì)講到如何操作數(shù)據(jù)存儲(chǔ)。
系列教程目錄《01:WebFlux 系列教程大綱》
《02:WebFlux 快速入門實(shí)踐》
《03:WebFlux Web CRUD 實(shí)踐》
《04:WebFlux 整合 Mongodb》
《05:WebFlux 整合 Thymeleaf》
《06:WebFlux 中 Thymeleaf 和 Mongodb 實(shí)踐》
《07:WebFlux 整合 Redis》
《08:WebFlux 中 Redis 實(shí)現(xiàn)緩存》
《09:WebFlux 中 WebSocket 實(shí)現(xiàn)通信》
《10:WebFlux 集成測(cè)試及部署》
《11:WebFlux 實(shí)戰(zhàn)圖書管理系統(tǒng)》
代碼示例本文示例讀者可以通過(guò)查看下面?zhèn)}庫(kù)的中的模塊工程名: 2-x-spring-boot-webflux-handling-errors:
Github:https://github.com/JeffLi1993/springboot-learning-example
Gitee:https://gitee.com/jeff1993/springboot-learning-example
如果您對(duì)這些感興趣,歡迎 star、follow、收藏、轉(zhuǎn)發(fā)給予支持!
參考資料Spring Boot 2.x WebFlux 系列:https://www.bysocket.com/arch...
spring.io 官方文檔
以下專題教程也許您會(huì)有興趣《Spring Boot 2.x 系列教程》 https://www.bysocket.com/spri...
《Java 核心系列教程》 https://www.bysocket.com/arch...
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/77709.html
摘要:使用則需要及以上版本。開發(fā)使用框架七系列教程目錄系列教程大綱快速入門實(shí)踐實(shí)踐整合整合中和實(shí)踐整合中實(shí)現(xiàn)緩存中實(shí)現(xiàn)通信集成測(cè)試及部署實(shí)戰(zhàn)圖書管理系統(tǒng) WebFlux 系列教程大綱 一、背景 大家都知道,Spring Framework 是 Java/Spring 應(yīng)用程序跨平臺(tái)開發(fā)框架,也是 Java EE(Java Enterprise Edition) 輕量級(jí)框架,其 Spring ...
摘要:響應(yīng)式編程是基于異步和事件驅(qū)動(dòng)的非阻塞程序,只是垂直通過(guò)在內(nèi)啟動(dòng)少量線程擴(kuò)展,而不是水平通過(guò)集群擴(kuò)展。三特性常用的生產(chǎn)的特性如下響應(yīng)式編程模型適用性內(nèi)嵌容器組件還有對(duì)日志消息測(cè)試及擴(kuò)展等支持。 摘要: 原創(chuàng)出處 https://www.bysocket.com 「公眾號(hào):泥瓦匠BYSocket 」歡迎關(guān)注和轉(zhuǎn)載,保留摘要,謝謝! 02:WebFlux 快速入門實(shí)踐 文章工程: JDK...
摘要:在配置下上面啟動(dòng)的配置數(shù)據(jù)庫(kù)名為賬號(hào)密碼也為。突出點(diǎn)是,即非阻塞的。四對(duì)象修改包里面的城市實(shí)體對(duì)象類。修改城市對(duì)象,代碼如下城市實(shí)體類城市編號(hào)省份編號(hào)城市名稱描述注解標(biāo)記對(duì)應(yīng)庫(kù)表的主鍵或者唯一標(biāo)識(shí)符。 摘要: 原創(chuàng)出處 https://www.bysocket.com 「公眾號(hào):泥瓦匠BYSocket 」歡迎關(guān)注和轉(zhuǎn)載,保留摘要,謝謝! 這是泥瓦匠的第104篇原創(chuàng) 文章工程: JDK...
摘要:一個(gè)簡(jiǎn)單的用戶管理的已經(jīng)完成,現(xiàn)在我們需要在頁(yè)面上展示,方便用戶管理。創(chuàng)建首頁(yè)頁(yè)面首頁(yè)歡迎頁(yè)面首頁(yè)實(shí)戰(zhàn)課程你想學(xué)點(diǎn)啥上班摸魚下班充電案例上手本課程是一個(gè)系列基礎(chǔ)教程,目標(biāo)是帶領(lǐng)讀者上手實(shí)戰(zhàn),課程以新版本的核心概念作為主線。 一個(gè)簡(jiǎn)單的用戶管理的CRUD已經(jīng)完成,現(xiàn)在我們需要在頁(yè)面上展示,方便用戶管理。盡管現(xiàn)在已經(jīng)流行前后分離開發(fā),但是在一些小公司做的項(xiàng)目并不需要前端開發(fā)人員,頁(yè)面也是后...
摘要:本項(xiàng)目將使用配合最簡(jiǎn)單的邏輯來(lái)展示一個(gè)基于的微服務(wù)全棧快速開發(fā)實(shí)踐的。提供一系列大型項(xiàng)目常用的非功能性特征,比如內(nèi)嵌服務(wù)器,安全,指標(biāo),健康檢測(cè),外部化配置。 SprintBoot-Vue SpringBoot + 前端MVVM 基于Java的微服務(wù)全棧快速開發(fā)實(shí)踐 showImg(https://segmentfault.com/img/remote/1460000010167913...
閱讀 2329·2023-04-26 00:28
閱讀 3078·2019-08-30 15:55
閱讀 2749·2019-08-30 12:47
閱讀 1560·2019-08-29 11:04
閱讀 3183·2019-08-28 18:14
閱讀 952·2019-08-28 18:11
閱讀 1679·2019-08-26 18:36
閱讀 3394·2019-08-23 18:21