25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

README.md 5.7 KiB

7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. # CAP                       [中文](https://github.com/dotnetcore/CAP/blob/develop/README.zh-cn.md)
  2. [![Travis branch](https://img.shields.io/travis/dotnetcore/CAP/develop.svg?label=travis-ci)](https://travis-ci.org/dotnetcore/CAP)
  3. [![AppVeyor](https://ci.appveyor.com/api/projects/status/4mpe0tbu7n126vyw?svg=true)](https://ci.appveyor.com/project/yuleyule66/cap)
  4. [![NuGet](https://img.shields.io/nuget/v/DotNetCore.CAP.svg)](https://www.nuget.org/packages/DotNetCore.CAP/)
  5. [![NuGet Preview](https://img.shields.io/nuget/vpre/DotNetCore.CAP.svg?label=nuget-pre)](https://www.nuget.org/packages/DotNetCore.CAP/)
  6. [![Member project of .NET China Foundation](https://img.shields.io/badge/member_project_of-.NET_CHINA-red.svg?style=flat&colorB=9E20C8)](https://github.com/dotnetcore)
  7. [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dotnetcore/CAP/master/LICENSE.txt)
  8. CAP is a .Net Standard library to achieve eventually consistent in distributed architectures system like SOA,MicroService. It is lightweight,easy to use and efficiently.
  9. ## OverView
  10. CAP is a library that used in an ASP.NET Core project, Of Course you can ues it in ASP.NET Core with .NET Framework.
  11. You can think of CAP as an EventBus because it has all the features of EventBus, and CAP provides a easier way to handle the publishing and subscribing than EventBus.
  12. CAP has the function of Message Persistence, and it makes messages reliability when your service is restarted or down. CAP provides a Publish Service based on Microsoft DI that integrates seamlessly with your business services and supports strong consistency transactions.
  13. This is a diagram of the CAP working in the ASP.NET Core MicroService architecture:
  14. ![](http://images2015.cnblogs.com/blog/250417/201707/250417-20170705175827128-1203291469.png)
  15. > The solid line in the figure represents the user code, and the dotted line represents the internal implementation of the CAP.
  16. ## Getting Started
  17. ### NuGet
  18. You can run the following command to install the CAP in your project.
  19. ```
  20. PM> Install-Package DotNetCore.CAP
  21. ```
  22. If your Message Queue is using Kafka, you can:
  23. ```
  24. PM> Install-Package DotNetCore.CAP.Kafka
  25. ```
  26. If your Message Queue is using RabbitMQ, you can:
  27. ```
  28. PM> Install-Package DotNetCore.CAP.RabbitMQ
  29. ```
  30. CAP supported SqlServer, MySql, PostgreSql as message store extension:
  31. ```
  32. //Select a database provider you are using
  33. PM> Install-Package DotNetCore.CAP.SqlServer
  34. PM> Install-Package DotNetCore.CAP.MySql
  35. PM> Install-Package DotNetCore.CAP.PostgreSql
  36. ```
  37. ### Configuration
  38. First,You need to config CAP in your Startup.cs:
  39. ```cs
  40. public void ConfigureServices(IServiceCollection services)
  41. {
  42. ......
  43. services.AddDbContext<AppDbContext>();
  44. services.AddCap(x =>
  45. {
  46. // If your SqlServer is using EF for data operations, you need to add the following configuration:
  47. // Notice: You don't need to config x.UseSqlServer(""") again!
  48. x.UseEntityFramework<AppDbContext>();
  49. // If you are using Dapper,you need to add the config:
  50. x.UseSqlServer("Your ConnectionStrings");
  51. //x.UseMySql("Your ConnectionStrings");
  52. //x.UsePostgreSql("Your ConnectionStrings");
  53. // If your Message Queue is using RabbitMQ you need to add the config:
  54. x.UseRabbitMQ("localhost");
  55. // If your Message Queue is using Kafka you need to add the config:
  56. x.UseKafka("localhost");
  57. });
  58. }
  59. public void Configure(IApplicationBuilder app)
  60. {
  61. .....
  62. app.UseCap();
  63. }
  64. ```
  65. ### Publish
  66. Inject `ICapPublisher` in your Controller, then use the `ICapPublisher` to send message
  67. ```cs
  68. public class PublishController : Controller
  69. {
  70. private readonly ICapPublisher _publisher;
  71. public PublishController(ICapPublisher publisher)
  72. {
  73. _publisher = publisher;
  74. }
  75. [Route("~/checkAccount")]
  76. public async Task<IActionResult> PublishMessage()
  77. {
  78. // Specifies the message header and content to be sent
  79. await _publisher.PublishAsync("xxx.services.account.check", new Person { Name = "Foo", Age = 11 });
  80. return Ok();
  81. }
  82. [Route("~/checkAccountWithTrans")]
  83. public async Task<IActionResult> PublishMessageWithTransaction([FromServices]AppDbContext dbContext)
  84. {
  85. using (var trans = dbContext.Database.BeginTransaction())
  86. {
  87. await _publisher.PublishAsync("xxx.services.account.check", new Person { Name = "Foo", Age = 11 });
  88. trans.Commit();
  89. }
  90. return Ok();
  91. }
  92. }
  93. ```
  94. ### Subscribe
  95. **Action Method**
  96. Add the Attribute `[CapSubscribe()]` on Action to subscribe message:
  97. ```cs
  98. public class PublishController : Controller
  99. {
  100. private readonly ICapPublisher _publisher;
  101. public PublishController(ICapPublisher publisher)
  102. {
  103. _publisher = publisher;
  104. }
  105. [NoAction]
  106. [CapSubscribe("xxx.services.account.check")]
  107. public async Task CheckReceivedMessage(Person person)
  108. {
  109. Console.WriteLine(person.Name);
  110. Console.WriteLine(person.Age);
  111. return Task.CompletedTask;
  112. }
  113. }
  114. ```
  115. **Service Method**
  116. If your subscribe method is not in the Controller,then your subscribe class need to Inheritance `ICapSubscribe`:
  117. ```cs
  118. namespace xxx.Service
  119. {
  120. public interface ISubscriberService
  121. {
  122. public void CheckReceivedMessage(Person person);
  123. }
  124. public class SubscriberService: ISubscriberService, ICapSubscribe
  125. {
  126. [CapSubscribe("xxx.services.account.check")]
  127. public void CheckReceivedMessage(Person person)
  128. {
  129. }
  130. }
  131. }
  132. ```
  133. Then inject your `ISubscriberService` class in Startup.cs
  134. ```cs
  135. public void ConfigureServices(IServiceCollection services)
  136. {
  137. services.AddTransient<ISubscriberService,SubscriberService>();
  138. }
  139. ```
  140. ## Contribute
  141. One of the easiest ways to contribute is to participate in discussions and discuss issues. You can also contribute by submitting pull requests with code changes.
  142. ### License
  143. [MIT](https://github.com/dotnetcore/CAP/blob/master/LICENSE.txt)