使用Spring Boot反應式R2DBC實現PostgreSQL的CRUD操作原始碼 - Rajesh
在本文中,讓我們看一下用於Postgres的Spring-Data-R2DBC驅動程式,以進行響應式CRUD操作。
完整的程式碼在這裡
使用Spring Boot版本2.3.1,JDK版本14和Gradle作為構建工具。如果您不熟悉Gradle,則可以自由選擇Maven作為構建工具。
首先,R2DBC專案是最近的。目前,只有Postgres,MSSQL和H2具有R2DBC驅動程式。此外,我們不能將其與所有Spring Boot功能一起使用。因此,我們需要手動新增一些步驟。
在您的Postgres資料庫中建立一個表。
CREATE TABLE product ( id integer, description character varying(255), price numeric, PRIMARY KEY (id) ); |
資料實體:
@Data @ToString public class Product implements Persistable<Integer> { @Id private Integer id; private String description; private Double price; @Transient private boolean newProduct; @Override @Transient public boolean isNew() { return this.newProduct || id == null; } public Product setAsNew() { this.newProduct = true; return this; } } |
記住這裡我們正在實現Persistable介面。根據您提供的@Id,持久庫確定該行是新行還是應該存在。如果您的實體實施Persistable,使用save(…)儲存結果時,根據isNew()來確定是否實現資料庫的INSERT或UPDATE。
使用資料庫時,我們需要一個連線工廠。因此,當然,R2DBC也需要同樣的東西。
因此,我們現在將新增詳細資訊以連線到我們的例項:
@Configuration public class R2DBCConfig { @Bean public ConnectionFactory connectionFactory() { return ConnectionFactories.get( ConnectionFactoryOptions.builder() .option(DRIVER, "postgresql") .option(HOST, "localhost") .option(PORT, 5432) .option(USER, "postgres") .option(PASSWORD, "******") .option(DATABASE, "postgres") .option(MAX_SIZE, 40) .build()); } } |
儲存庫負責持久化實體和值型別。他們為客戶提供了一個簡單的模型,用於獲取永續性物件並管理其生命週期。它們使應用程式和領域設計與永續性技術和策略選擇脫鉤。他們還傳達有關物件訪問的設計決策。最後,它們允許用虛擬實現輕鬆替換實現,是測試的理想選擇。Spring Data的儲存庫通過介面定義支援所有這些目標,這些定義的實現是在框架啟動時由框架建立的。
建立一個Spring Data儲存庫:
@Repository public interface ProductRepository extends ReactiveCrudRepository<Product, Integer> { } |
Spring Framework 5改變了一切。Spring Framework 5假定使用Java 8基線,並具有lambda和無限的功能性可能性!
我們在反應式Web應用程式中所做的許多事情都使其具有函式性程式設計風格。Spring Framework 5首次推出了一種新的功能性反應式程式設計模型,該模型與Spring WebFlux中的控制器風格的程式設計模型相似。這個新的程式設計模型僅在Spring WebFlux中可用。
@Configuration public class ProductsEndpointConfig { private static final String PRODUCT = "/product"; @Bean RouterFunction<ServerResponse> routes(ProductHandler handler) { return route(GET(PRODUCT), handler::all) .andRoute(POST(PRODUCT), handler::create) .andRoute(DELETE(PRODUCT + "/{id}"), handler::deleteById); } } |
Spring WebFlux提供了一個DSL,用於描述如何匹配傳入的請求。GET("/product")讓RequestPredicate與通過GET方法到URI /product的HTTP 方法請求匹配。您可以組合RequestPredicate:.and(RequestPredicate),.not(RequestPredicate)或.or(RequestPredicate)。
匹配請求後,HandlerFunction<ServerResponse>被呼叫來產生響應。讓我們看一下相應的處理程式物件。
@Component public class ProductHandler { final ProductService productService; public ProductHandler(ProductService productService) { this.productService = productService; } public Mono<ServerResponse> create(ServerRequest request) { Flux<Product> flux = request .bodyToFlux(Product.class) .flatMap(toWrite -> this.productService.updateProduct(toWrite)); return defaultWriteResponse(flux); } public Mono<ServerResponse> all(ServerRequest r) { return defaultReadResponse(this.productService.getAllProducts()); } public Mono<ServerResponse> deleteById(ServerRequest r) { return defaultReadResponse(this.productService.delete(id(r))); } private static Mono<ServerResponse> defaultReadResponse(Publisher<Product> products) { return ServerResponse .ok() .contentType(MediaType.APPLICATION_JSON) .body(products, Product.class); } private static Mono<ServerResponse> defaultWriteResponse(Publisher<Product> product) { return Mono .from(product) .flatMap(p -> ServerResponse .created(URI.create("/product")) .contentType(MediaType.APPLICATION_JSON) .build() ); } private static int id(ServerRequest r) { return Integer.parseInt(r.pathVariable("id")); } } |
主程式入口:
@SpringBootApplication @EnableR2dbcRepositories public class DemoReactiveRdbmsApplication { public static void main(String[] args) { SpringApplication.run(DemoReactiveRdbmsApplication.class, args); } } |
總而言之,R2DBC仍處於早期階段。試圖建立一個SPI,該SPI將為SQL資料庫定義一個響應式API。當與Spring WebFlux一起使用時,R2DBC允許我們編寫一個應用程式,該應用程式從頂部一直到資料庫一直非同步處理資料。
完整的程式碼在這裡
相關文章
- Spring Boot原始碼:使用MongoDB MongoTemplate公開REST在幾分鐘內實現CRUD功能Spring Boot原始碼MongoDBREST
- Spring Data R2DBC響應式操作MySQLSpringMySql
- Spring Boot+MiniUI CRUD操作Spring BootUI
- 使用PreparedStatement實現CRUD操作
- 使用Spring實現反應式事務(Reactive Transactions)SpringReact
- Spring Boot Crud操作示例 | Java Code GeeksSpring BootJava
- 使用Spring Boot + Kafka實現Saga分散式事務模式的原始碼 - vinsguruSpring BootKafka分散式模式原始碼
- 使用R2DBC實現資料庫的響應式訪問資料庫
- 使用Docker實現Spring Boot Restful Web服務案例原始碼DockerSpring BootRESTWeb原始碼
- 使用反應式關聯式資料庫連線規範R2DBC操作MySQL資料庫資料庫MySql
- 使用Spring Boot實現分散式事務Spring Boot分散式
- Spring Boot 與 R2DBC 整合Spring Boot
- PostgreSQL MVCC 原始碼實現SQLMVC原始碼
- Spring Boot + JPA實現MySQL批量更新原始碼 - githubSpring BootMySql原始碼Github
- Spring Boot中實現規則引擎原始碼教程Spring Boot原始碼
- 使用Spring Boot和Kafka Streams實現基於SAGA模式的分散式事務原始碼教程 - PiotrSpring BootKafka模式分散式原始碼
- Spring Boot整合Mybatis完成級聯一對多CRUD操作Spring BootMyBatis
- 使用Spring Boot實現的GraphQL示例Spring Boot
- Spring Boot實現DDD的貨運Cargo微服務案例原始碼Spring BootCargo微服務原始碼
- 精盡Spring Boot原始碼分析 - Jar 包的啟動實現Spring Boot原始碼JAR
- Spring Boot 整合 Redis 實現快取操作Spring BootRedis快取
- Laravel Database——資料庫的 CRUD 操作原始碼分析LaravelDatabase資料庫原始碼
- spring boot碼雲原始碼Spring Boot原始碼
- 使用Spring Boot實現模組化Spring Boot
- Spring Boot系列(四):Spring Boot原始碼解析Spring Boot原始碼
- PostgreSQL 原始碼解讀(249)- 實現簡單的鉤子函式SQL原始碼函式
- 精盡Spring Boot原始碼分析 - 內嵌Tomcat容器的實現Spring Boot原始碼Tomcat
- Spring boot學習(六)Spring boot實現AOP記錄操作日誌Spring Boot
- Spring Boot中用嵌入式PostgreSQL測試Spring BootSQL
- Spring Boot中使用PostgreSQL資料庫Spring BootSQL資料庫
- 使用Kubernetes,Spring Boot和Flyway實現零停機部署原始碼專案Spring Boot原始碼
- Spring Boot Redis 實現分散式鎖,真香!!Spring BootRedis分散式
- 淺出Spring Boot系列(二)程式碼組織及CRUDSpring Boot
- Spring Boot整合Spring Cloud Task實現批處理操作Spring BootCloud
- 精盡Spring Boot原始碼分析 - 支援外部 Tomcat 容器的實現Spring Boot原始碼Tomcat
- 精盡Spring Boot原始碼分析 - @ConfigurationProperties 註解的實現Spring Boot原始碼
- 使用Spring Boot實現事務管理Spring Boot
- spring 整合 mybatis 及mybatis 的 crud 操作SpringMyBatis