时间:2021-05-19
在本教程中,我想向您展示如何通过带有Spring WebFlux的Spring Data R2DBC 执行各种Postgres CRUD操作。
R2DBC代表反应式关系数据库连接。
像JPA(Java持久性API)一样,R2DBC是关系数据库的反应性驱动程序的规范。由于它是一个单独的规范,因此请勿与JPA / Hibernate功能(如@OneToMany,@ManyToMany 等)比较。
我们将开发一个名为product-service的Spring Boot应用程序,该应用程序负责创建新产品/检索所有产品/删除或更新现有产品以执行R2DBC的各种Postgres CRUD操作。
我们不能在此处添加@Entity,因为这不是JPA。
Spring Data照常进行所有繁重的工作。我们需要通过扩展ReactiveCrudRepository为我们的实体类创建一个存储库。
<b>import</b> org.springframework.data.repository.reactive.ReactiveCrudRepository;<b>import</b> org.springframework.stereotype.Repository;@Repository<b>public</b> <b>interface</b> ProductRepository <b>extends</b> ReactiveCrudRepository<Product, Integer> {}让我们创建一个服务类,以通过Spring Data Reactive Repository执行Postgres CRUD操作。
@Service<b>public</b> <b>class</b> ProductService { @Autowired <b>private</b> ProductRepository repository; <b>public</b> Flux<Product> getAllProducts(){ <b>return</b> <b>this</b>.repository.findAll(); } <b>public</b> Mono<Product> getProductById(<b>int</b> productId){ <b>return</b> <b>this</b>.repository.findById(productId); } <b>public</b> Mono<Product> createProduct(<b>final</b> Product product){ <b>return</b> <b>this</b>.repository.save(product); } <b>public</b> Mono<Product> updateProduct(<b>int</b> productId, <b>final</b> Mono<Product> productMono){ <b>return</b> <b>this</b>.repository.findById(productId) .flatMap(p -> productMono.map(u -> { p.setDescription(u.getDescription()); p.setPrice(u.getPrice()); <b>return</b> p; })) .flatMap(p -> <b>this</b>.repository.save(p)); } <b>public</b> Mono<Void> deleteProduct(<b>final</b> <b>int</b> id){ <b>return</b> <b>this</b>.repository.deleteById(id); }}现在是时候通过REST API公开服务了:
@RestController@RequestMapping(<font>"product"</font><font>)<b>public</b> <b>class</b> ProductController { @Autowired <b>private</b> ProductService productService; @GetMapping(</font><font>"all"</font><font>) <b>public</b> Flux<Product> getAll(){ <b>return</b> <b>this</b>.productService.getAllProducts(); } @GetMapping(</font><font>"{productId}"</font><font>) <b>public</b> Mono<ResponseEntity<Product>> getProductById(@PathVariable <b>int</b> productId){ <b>return</b> <b>this</b>.productService.getProductById(productId) .map(ResponseEntity::ok) .defaultIfEmpty(ResponseEntity.notFound().build()); } @PostMapping <b>public</b> Mono<Product> createProduct(@RequestBody Mono<Product> productMono){ <b>return</b> productMono.flatMap(<b>this</b>.productService::createProduct); } @PutMapping(</font><font>"{productId}"</font><font>) <b>public</b> Mono<Product> updateProduct(@PathVariable <b>int</b> productId, @RequestBody Mono<Product> productMono){ <b>return</b> <b>this</b>.productService.updateProduct(productId, productMono); } @DeleteMapping(</font><font>"/{id}"</font><font>) <b>public</b> Mono<Void> deleteProduct(@PathVariable <b>int</b> id){ <b>return</b> <b>this</b>.productService.deleteProduct(id); }}</font>Spring Data反应驱动程序需要这样的配置才能连接到Postgres DB。
方法1:使用application.properties
spring.r2dbc.url=r2dbc:postgresql:<font><i>//localhost:5432/productdb</i></font><font>spring.r2dbc.username=vinsguruspring.r2dbc.password=admin</font>方法2:公开连接工厂bean
@Configuration<b>public</b> <b>class</b> R2DBCConfig { @Bean <b>public</b> ConnectionFactory connectionFactory() { <b>return</b> ConnectionFactories.get( ConnectionFactoryOptions.builder() .option(DRIVER, <font>"postgresql"</font><font>) .option(HOST, </font><font>"localhost"</font><font>) .option(PORT, 5432) .option(USER, </font><font>"vinsguru"</font><font>) .option(PASSWORD, </font><font>"admin"</font><font>) .option(DATABASE, </font><font>"productdb"</font><font>) .option(MAX_SIZE, 40) .build()); }}</font>完整的源代码在这里。
到此这篇关于使用Spring Data R2DBC +Postgres实现增删改查功能的文章就介绍到这了,更多相关Spring Data R2DBC +Postgres实现增删改查内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
前言上篇文章我们讲到了怎么在SpringwebFlux中使用r2dbc,今天我们看一下怎么使用spring-data-r2dbc这个Springdata对r2d
用AngularJS实现对表格的增删改查(仅限前端),具体代码:实现表格的增删改查.add{position:relative;top:-40px;left:1
初步学习SSI框架,做的struts2+spring+ibatis框架整合的小实例,实现增删改查操作。项目框架如下所示:准备工作:导入需要的struts2、sp
ORM对象关系映射在数据库中,实现对数据的增删改查,使用的是SQ语句,在django中,通过python代码,实现对数据库的增删改查,这就是ORM。在pytho
软件开发实际就是数据的增删改查,javascript前端开发也不例外。今天学了jquery框架的简单使用。于是用它实现简单的增删改,接着也用原始的javascr