属蛇的和什么属相最配put请求本身其实可说的并不多,过程也和创建基本类似。在这篇文章中,重点是填上之前文章里留的一个坑,我们曾经给todoitem定义过一个标记完成的领域事件:todoitemcompletedevent,在savechangesasync方法里做了一个dispatchevents的操作。并且在domaineventrvice实现idomaineventrvice的publish方法中暂时以下面的代码代替了:
domaineventrvice.cs
public async task publish(domainevent domainevent){ // 在这里暂时什么都不做,到cqrs那一篇的时候再回来补充这里的逻辑 _logger.loginformation("publishing domain even普通话考试技巧t. event - {event}", domainevent.gettype().name);}
在前几篇应用mediatr实现cqrs的过程中,我们主要是和irequest/irequesthandler打的交道。那么本文将会涉及到另外一对常用的接口:inotification/inotificationhandler,来实现领域事件的处理。
1.实现put请求;
2.实现领域事件的响应处理;
实现put请求的原理和思路与实现post请求类似,就不展开了。关于实现领域事件响应的部分,我们需要实现inotification/inotificationhandler接口,并改写publish的实现,让它能发布领域事件通知。
我们拿更新todoitem的完成状态来举例,首先来自定义一个领域异常notfoundexception,位于application/common/exceptions里:
notfoundexception.cs
namespace todolist.application.common.exceptions;public class notfoundexception : exception{ public notfoundexception() : ba() { } public notfoundexception(string message) : ba(message) { } public notfoundexception(string message, exception innerexception) : ba(message, innerexception) { } public notfoundexception(string name, object key) : ba($"entity \"{name}\" ({key}) was not found.") { }}
创建对应的command:
updatetodoitemcommand.cs
using mediatr;using todolist.application.common.exceptions;using todolist.application.common.interfaces;using todolist.domain.entities;namespace todolist.application.todoitems.commands.updatetodoitem;public class updatetodoitemcommand : irequest<todoitem>{ public guid id { get; t; } public string? title { get; t; } public bool done { get; t; }}public class updatetodoitemcommandhandler : irequesthandler<updatetodoitemcommand, todoitem>{ private readonl张九龄简介y irepository<todoitem> _repository; public updatetodoitemcommandhandler(irepository<todoitem> repository) { _repository = repository; } public async task<todoitem> handle(updatetodoitemcommand request, cancellationtoken cancellationtoken) { var entity = await _repository.getasync(request.id); if (entity == null) { throw new notfoundexception(nameof(todoitem), request.id); } entity.title = request.title ?? entity.title; entity.done = request.done; await _repository.updateasync(entity, cancellationtoken); return entity; }}
实现controller:
todoitemcontroller.cs
[httpput("{id:guid}")]public async task<apirespon<todoitem>> update(guid id, [frombody] updatetodoitemcommand command){ if (id != command.id) { return apirespon<todo体育游戏item>.fail("query id not match witch body"); } return apirespon<todoitem>.success(await _mediator.nd(command));}
首先需要在application/common/models定义一个泛型类,实现inotification接口,用于发布领域事件:
domaineventnotification.cs
using mediatr;using todolist.domain.ba;namespace todolist.application.common.models;public class domaineventnotification<tdomainevent> : inotification where tdomainevent : domainevent{ public domaineventnotification(tdomainevent domainevent) { domainevent = domainevent; } public tdomainevent domainevent { get; }}
接下来在application/todoitems/eventhandlers中创建对应的handler:
todoitemcompletedeventhandler.cs
using mediatr;using microsoft.extensions.logging;using todolist.application.common.models;using todolist.domain.events;namespace todolist.application.todoitems.eventhandlers;public class todoitemcompletedeventhandler : inotificatio关于祖国的作文nhandler<domaineventnotification<todoitemcompletedevent>>{ private readonly ilogger<todoitemcompletedeventhandler> _logger; public todoitemcompletedeventhandler(ilogger<todoitemcompletedeventhandler> logger) { _logger = logger; } public task handle(domaineventnotification<todoitemcompletedevent> notification, cancellationtoken cancellationtoken) { var domainevent = notification.domainevent; // 这里我们还是只做日志输出,实际使用中根据需要进行业务逻辑处理,但是在handler中不建议继续nd其他command或notification _logger.loginformation("todolist domain event: {domainevent}", domainevent.gettype().name); return task.completedtask; }}
最后去修改我们之前创建的domaineventrvice,注入imediator并发布领域事件,这样就可以在handler中进行响应了。
domaineventrvice.cs
using mediatr;using microsoft.extensions.logging;using todolist.application.common.interfaces;using todolist.application.common.models;using todolist.domain.ba;namespace todolist.infrastructure.rvices;public class domaineventrvice : idomaineventrvice{ private readonly imediator _mediator; private readonly ilogger<domaineventrvice> _logger; public domaineventrvice(imediator mediator, ilogger<domaineventrvice> logger) { _mediator = mediator; _logger = logger; } public async task publish(domainevent domainevent) { _logger.loginformation("publishing domain event. event - {event}", domainevent.gettype().name); await _mediator.publish(getnotificationcorrespondingtodomainevent(domainevent)); } private inotification getnotificationcorrespondingtodomainevent(domainevent domainevent) { return (inotification)activator.createinstance(typeof(domaineventnotification<>).makegenerictype(domainevent.gettype()), domainevent)!; }}
启动api项目,更新todoitem的完成状态。
请求
响应
领域事件发布
这篇文章主要在实现put请求的过程中介绍了如何通过mediatr去响应领域事件,我们用的示例代码中类似“创建todolist”,包括后面会讲到的“删除todoitem”之类的领域事件,都是相同的处理方式,我就不一一演示了。
可以看出来,在我们这个示例应用程序的框架基本搭建完毕以后,进行领域业务的开发的思路是比较清晰的,模块之间的耦合也处在一个理想的情况。
在我们来完成crud的最后一个请求之前,下一篇会简单地介绍一下patch请求的相关内容,这个请求实际应用比较少,但是为了保持知识树的完整性,还是会过一下。
到此这篇关于.net 6开发todolist应用之实现put请求的文章就介绍到这了,更多相关.net 6 实现put请求内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-04 12:21:45,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/356b12c1ba1ced30ab516ac34a23f612.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:.NET 6开发TodoList应用之实现PUT请求.doc
本文 PDF 下载地址:.NET 6开发TodoList应用之实现PUT请求.pdf
留言与评论(共有 0 条评论) |