欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

通过lms.samples熟悉lms微服务框架的使用详解

程序员文章站 2022-07-08 23:38:31
经过一段时间的开发与测试,终于发布了lms框架的第一个正式版本(1.0.0版本),并给出了lms框架的样例项目lms.samples。本文通过对lms.samples的介绍,简述如何通过lms框架快速...

经过一段时间的开发与测试,终于发布了lms框架的第一个正式版本(1.0.0版本),并给出了lms框架的样例项目lms.samples。本文通过对lms.samples的介绍,简述如何通过lms框架快速的构建一个微服务的业务框架,并进行应用开发。

lms.samples项目基本介绍

lms.sample项目由三个独立的微服务应用模块组成:account、stock、order和一个网关项目gateway构成。

业务应用模块

每个独立的微服务应用采用模块化设计,主要由如下几部分组成:

  1. 主机(host): 主要用于托管微服务应用本身,主机通过引用应用服务项目(应用接口的实现),托管微服务应用,通过托管应用服务,在主机启动的过程中,向服务注册中心注册服务路由。
  2. 应用接口层(application.contracts): 用于定义应用服务接口,通过应用接口,该微服务模块与其他微服务模块或是网关进行rpc通信的能力。在该项目中,除了定义应用服务接口之前,一般还定义与该应用接口相关的dto对象。应用接口除了被该微服务应用项目引用,并实现应用服务之前,还可以被网关或是其他微服务模块引用。网关或是其他微服务项目通过应用接口生成的代理与该微服务模块通过rpc进行通信。
  3. 应用服务层(application): 应用服务是该微服务定义的应用接口的实现。应用服务与ddd传统分层架构的应用层的概念一致。主要负责外部通信与领域层之间的协调。一般地,应用服务进行业务流程控制,但是不包含业务逻辑的实现。
  4. 领域层(domain): 负责表达业务概念,业务状态信息以及业务规则,是该微服务模块的业务核心。一般地,在该层可以定义聚合根、实体、领域服务等对象。
  5. 领域共享层(domain.shared): 该层用于定义与领域对象相关的模型、实体等相关类型。不包含任何业务实现,可以被其他微服务引用。
  6. 数据访问(dataaccess)层: 该层一般用于封装数据访问相关的对象。例如:仓库对象、 sqlhelper、或是orm相关的类型等。在lms.samples中,通过efcore实现数据的读写操作。

通过lms.samples熟悉lms微服务框架的使用详解

服务聚合与网关

lms框架不允许服务外部与微服务主机直接通信,应用请求必须通过http请求到达网关,网关通过lms提供的中间件解析到服务条目,并通过rpc与集群内部的微服务进行通信。所以,如果服务需要与集群外部进行通信,那么,开发者定义的网关必须要引用各个微服务模块的应用接口层;以及必须要使用lms相关的中间件。

开发环境

  1. .net版本: 5.0.101
  2. lms版本: 1.0.0
  3. ide: (1) visual studio 最新版 (2) rider(推荐)

主机与应用托管

主机的创建步骤

通过lms框架创建一个业务模块非常方便,只需要通过如下4个步骤,就可以轻松的创建一个lms应用业务模块。

1.创建项目

创建控制台应用(console application)项目,并且引用silky.lms.normhost包。

dotnet add package silky.lms.normhost --version 1.0.0

2.应用程序入口与主机构建

main方法中,通用.net的主机host构建并注册lms微服务。在注册lms微服务时,需要指定lms启动的依赖模块。

一般地,如果开发者不需要额外依赖其他模块,也无需在应用启动或停止时执行方法,那么您可以直接指定normhostmodule模块。

 public class program
    {
        public static async task main(string[] args)
        {
            await createhostbuilder(args).build().runasync();
        }

        private static ihostbuilder createhostbuilder(string[] args)
        {
            return host.createdefaultbuilder(args)
                    .registerlmsservices<normhostmodule>()
                ;
        }
    }

3.配置文件

lms框架支持yml或是json格式作为配置文件。通过appsettings.yml对lms框架进行统一配置,通过appsettings.${environment}.yml对不同环境变量下的配置项进行设置。

开发者如果直接通过项目的方式启动应用,那么可以通过properties/launchsettings.jsonenvironmentvariables.dotnet_environment环境变量。如果通过docker-compose的方式启动应用,那么可以通过.env设置dotnet_environment环境变量。

为保证配置文件有效,开发者需要显式的将配置文件拷贝到项目生成目录下。

4.引用应用服务层和数据访问层

一般地,主机项目需要引用该微服务模块的应用服务层和数据访问层。只有主机引用应用服务层,主机在启动时,才会生成服务条目的路由,并且将服务路由注册到服务注册中心。

一个典型的主机项目文件如下所示:

<project sdk="microsoft.net.sdk">

    <propertygroup>
        <outputtype>exe</outputtype>
        <targetframework>net5.0</targetframework>
    </propertygroup>

    <itemgroup>
      <packagereference include="silky.lms.normhost" version="$(lmsversion)" />
    </itemgroup>

    <itemgroup>
      <none update="appsettings.yml">
        <copytooutputdirectory>always</copytooutputdirectory>
      </none>
      <none update="appsettings.production.yml">
        <copytooutputdirectory>always</copytooutputdirectory>
      </none>
      <none update="appsettings.development.yml">
        <copytooutputdirectory>always</copytooutputdirectory>
      </none>
    </itemgroup>

    <itemgroup>
      <projectreference include="..\lms.account.application\lms.account.application.csproj" />
      <projectreference include="..\lms.account.entityframeworkcore\lms.account.entityframeworkcore.csproj" />
    </itemgroup>
</project>

配置

一般地,一个微服务模块的主机必须要配置:服务注册中心、分布式锁链接、分布式缓存地址、集群rpc通信token、数据库链接地址等。

如果使用docker-compose来启动和调试应用的话,那么,rpc配置节点下的的host和port可以缺省,因为生成的每个容器的都有自己的地址和端口号。

如果直接通过项目的方式启动和调试应用的话,那么,必须要配置rpc节点下的port,每个微服务模块的主机应用有自己的端口号。

lms框架的必要配置如下所示:

rpc:
  host: 0.0.0.0
  rpcport: 2201
  token: ypjdyoznd4fwenjiearmlwwk0v7quhpw
registrycenter:
  connectionstrings: 127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183;127.0.0.1:2184,127.0.0.1:2185,127.0.0.1:2186 # 使用分号;来区分不同的服务注册中心
  registrycentertype: zookeeper
distributedcache:
  redis:
    isenabled: true 
    configuration: 127.0.0.1:6379,defaultdatabase=0
lock:
  lockredisconnection: 127.0.0.1:6379,defaultdatabase=1
connectionstrings:
    default: server=127.0.0.1;port=3306;database=account;uid=root;pwd=qwe!p4ss;

应用接口

应用接口定义

一般地,在应用接口层开发者需要安装silky.lms.rpc包。如果该微服务模块还涉及到分布式事务,那么还需要安装silky.lms.transaction.tcc,当然,您也可以选择在应用接口层安装silky.lms.transaction包,在应用服务层安装silky.lms.transaction.tcc包。

  1. 开发者只需要在应用接口通过servicerouteattribute特性对应用接口进行直接即可。
  2. lms约定应用接口应当以ixxxappservice命名,这样,服务条目生成的路由则会以api/xxx形式生成。当然这并不是强制的。
  3. 每个应用接口的方法都对应着一个服务条目,服务条目的id为: 方法的完全限定名 + 参数名
  4. 您可以在应用接口层对方法的缓存、路由、服务治理、分布式事务进行相关配置。该部分内容请参考
  5. 网关或是其他模块的微服务项目需要引用服务应用接口项目或是通过nuget的方式安装服务应用接口生成的包。
  6. [governance(prohibitextranet = true)]可以标识一个方法禁止与集群外部进行通信,通过网关也不会生成swagger文档。
  7. 应用接口方法生成的webapi支持restful api风格。lms支持通过方法的约定命名生成对应http方法请求的webapi。您当然开发者也可以通过httpmethodattribute特性对某个方法进行注解。

一个典型的应用接口的定义

/// <summary>
    /// 账号服务
    /// </summary>
    [serviceroute]
    public interface iaccountappservice
    {
        /// <summary>
        /// 新增账号
        /// </summary>
        /// <param name="input">账号信息</param>
        /// <returns></returns>
        task<getaccountoutput> create(createaccountinput input);

        /// <summary>
        /// 通过账号名称获取账号
        /// </summary>
        /// <param name="name">账号名称</param>
        /// <returns></returns>
        [getcachingintercept("account:name:{0}")]
        [httpget("{name:string}")]
        task<getaccountoutput> getaccountbyname([cachekey(0)] string name);

        /// <summary>
        /// 通过id获取账号信息
        /// </summary>
        /// <param name="id">账号id</param>
        /// <returns></returns>
        [getcachingintercept("account:id:{0}")]
        [httpget("{id:long}")]
        task<getaccountoutput> getaccountbyid([cachekey(0)] long id);

        /// <summary>
        /// 更新账号信息
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        [updatecachingintercept( "account:id:{0}")]
        task<getaccountoutput> update(updateaccountinput input);

        /// <summary>
        /// 删除账号信息
        /// </summary>
        /// <param name="id">账号id</param>
        /// <returns></returns>
        [removecachingintercept("getaccountoutput","account:id:{0}")]
        [httpdelete("{id:long}")]
        task delete([cachekey(0)]long id);

        /// <summary>
        /// 订单扣款
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        [governance(prohibitextranet = true)]
        [removecachingintercept("getaccountoutput","account:id:{0}")]
        [transaction]
        task<long?> deductbalance(deductbalanceinput input);
    }

应用服务--应用接口的实现

  1. 应用服务层只需要引用应用服务接口层以及领域服务层,并实现应用接口相关的方法。
  2. 确保该微服务模块的主机引用了该模块的应用服务层,这样主机才能够托管该应用本身。
  3. 应用服务层可以通过引用其他微服务模块的应用接口层项目(或是安装nuget包,取决于开发团队的项目管理方法),与其他微服务模块进行rpc通信。
  4. 应用服务层需要依赖领域服务,通过调用领域服务的相关接口,实现该模块的核心业务逻辑。
  5. dto到实体对象或是实体对dto对象的映射关系可以在该层指定映射关系。

一个典型的应用服务的实现如下所示:

public class accountappservice : iaccountappservice
    {
        private readonly iaccountdomainservice _accountdomainservice;

        public accountappservice(iaccountdomainservice accountdomainservice)
        {
            _accountdomainservice = accountdomainservice;
        }

        public async task<getaccountoutput> create(createaccountinput input)
        {
            var account = input.mapto<domain.accounts.account>();
            account = await _accountdomainservice.create(account);
            return account.mapto<getaccountoutput>();
        }

        public async task<getaccountoutput> getaccountbyname(string name)
        {
            var account = await _accountdomainservice.getaccountbyname(name);
            return account.mapto<getaccountoutput>();
        }

        public async task<getaccountoutput> getaccountbyid(long id)
        {
            var account = await _accountdomainservice.getaccountbyid(id);
            return account.mapto<getaccountoutput>();
        }

        public async task<getaccountoutput> update(updateaccountinput input)
        {
            var account = await _accountdomainservice.update(input);
            return account.mapto<getaccountoutput>();
        }

        public task delete(long id)
        {
            return _accountdomainservice.delete(id);
        }

        [tcctransaction(confirmmethod = "deductbalanceconfirm", cancelmethod = "deductbalancecancel")]
        public async task<long?> deductbalance(deductbalanceinput input)
        {
            var account = await _accountdomainservice.getaccountbyid(input.accountid);
            if (input.orderbalance > account.balance)
            {
                throw new businessexception("账号余额不足");
            }
            return await _accountdomainservice.deductbalance(input, tccmethodtype.try);
        }

        public task deductbalanceconfirm(deductbalanceinput input)
        {
            return _accountdomainservice.deductbalance(input, tccmethodtype.confirm);
        }

        public task deductbalancecancel(deductbalanceinput input)
        {
            return _accountdomainservice.deductbalance(input, tccmethodtype.cancel);
        }
    }

领域层--微服务的核心业务实现

  1. 领域层是该微服务模块核心业务处理的模块,一般用于定于聚合根、实体、领域服务、仓储等业务对象。
  2. 领域层引用该微服务模块的应用接口层,方便使用dto对象。
  3. 领域层可以通过引用其他微服务模块的应用接口层项目(或是安装nuget包,取决于开发团队的项目管理方法),与其他微服务模块进行rpc通信。
  4. 领域服务必须要直接或间接继承itransientdependency接口,这样,该领域服务才会被注入到ioc容器。
  5. lms.samples 项目使用tanvirarjel.efcore.genericrepository包实现数据的读写操作。

一个典型的领域服务的实现如下所示:

public class accountdomainservice : iaccountdomainservice
    {
        private readonly irepository _repository;
        private readonly idistributedcache<getaccountoutput, string> _accountcache;

        public accountdomainservice(irepository repository,
            idistributedcache<getaccountoutput, string> accountcache)
        {
            _repository = repository;
            _accountcache = accountcache;
        }

        public async task<account> create(account account)
        {
            var exsitaccountcount = await _repository.getcountasync<account>(p => p.name == account.name);
            if (exsitaccountcount > 0)
            {
                throw new businessexception($"已经存在{account.name}名称的账号");
            }

            exsitaccountcount = await _repository.getcountasync<account>(p => p.email == account.email);
            if (exsitaccountcount > 0)
            {
                throw new businessexception($"已经存在{account.email}email的账号");
            }

            await _repository.insertasync<account>(account);
            return account;
        }

        public async task<account> getaccountbyname(string name)
        {
            var accountentry = _repository.getqueryable<account>().firstordefault(p => p.name == name);
            if (accountentry == null)
            {
                throw new businessexception($"不存在名称为{name}的账号");
            }

            return accountentry;
        }

        public async task<account> getaccountbyid(long id)
        {
            var accountentry = _repository.getqueryable<account>().firstordefault(p => p.id == id);
            if (accountentry == null)
            {
                throw new businessexception($"不存在id为{id}的账号");
            }

            return accountentry;
        }

        public async task<account> update(updateaccountinput input)
        {
            var account = await getaccountbyid(input.id);
            if (!account.email.equals(input.email))
            {
                var exsitaccountcount = await _repository.getcountasync<account>(p => p.email == input.email);
                if (exsitaccountcount > 0)
                {
                    throw new businessexception($"系统中已经存在email为{input.email}的账号");
                }
            }

            if (!account.name.equals(input.name))
            {
                var exsitaccountcount = await _repository.getcountasync<account>(p => p.name == input.name);
                if (exsitaccountcount > 0)
                {
                    throw new businessexception($"系统中已经存在name为{input.name}的账号");
                }
            }

            await _accountcache.removeasync($"account:name:{account.name}");
            account = input.mapto(account);
            await _repository.updateasync(account);
            return account;
        }

        public async task delete(long id)
        {
            var account = await getaccountbyid(id);
            await _accountcache.removeasync($"account:name:{account.name}");
            await _repository.deleteasync(account);
        }

        public async task<long?> deductbalance(deductbalanceinput input, tccmethodtype tccmethodtype)
        {
            var account = await getaccountbyid(input.accountid);
            var trans = await _repository.begintransactionasync();
            balancerecord balancerecord = null;
            switch (tccmethodtype)
            {
                case tccmethodtype.try:
                    account.balance -= input.orderbalance;
                    account.lockbalance += input.orderbalance;
                    balancerecord = new balancerecord()
                    {
                        orderbalance = input.orderbalance,
                        orderid = input.orderid,
                        paystatus = paystatus.nopay
                    };
                    await _repository.insertasync(balancerecord);
                    rpccontext.getcontext().setattachment("balancerecordid",balancerecord.id);
                    break;
                case tccmethodtype.confirm:
                    account.lockbalance -= input.orderbalance;
                    var balancerecordid1 = rpccontext.getcontext().getattachment("orderbalanceid")?.to<long>();
                    if (balancerecordid1.hasvalue)
                    {
                        balancerecord = await _repository.getbyidasync<balancerecord>(balancerecordid1.value);
                        balancerecord.paystatus = paystatus.payed;
                        await _repository.updateasync(balancerecord);
                    }
                    break;
                case tccmethodtype.cancel:
                    account.balance += input.orderbalance;
                    account.lockbalance -= input.orderbalance;
                    var balancerecordid2 = rpccontext.getcontext().getattachment("orderbalanceid")?.to<long>();
                    if (balancerecordid2.hasvalue)
                    {
                        balancerecord = await _repository.getbyidasync<balancerecord>(balancerecordid2.value);
                        balancerecord.paystatus = paystatus.cancel;
                        await _repository.updateasync(balancerecord);
                    }
                    break;
            }

           
            await _repository.updateasync(account);
            await trans.commitasync();
            await _accountcache.removeasync($"account:name:{account.name}");
            return balancerecord?.id;
        }
    }

数据访问(entityframeworkcore)--通过efcore实现数据读写

  • lms.samples项目使用orm框架efcore进行数据读写。
  • lms提供了iconfigureservice,通过继承该接口即可使用iservicecollection的实例指定数据上下文对象和注册仓库服务。
public class efcoreconfigureservice : iconfigureservice
    {
        public void configureservices(iservicecollection services, iconfiguration configuration)
        {
            services.adddbcontext<orderdbcontext>(opt =>
                    opt.usemysql(configuration.getconnectionstring("default"),
                        serverversion.autodetect(configuration.getconnectionstring("default"))))
                .addgenericrepository<orderdbcontext>(servicelifetime.transient)
                ;
        }

        public int order { get; } = 1;
    }

3.主机项目需要显式的引用该项目,只有这样,该项目的configureservices才会被调用。

4.数据迁移,请

应用启动与调试

获取源码

1.使用git 克隆lms项目源代码,lms.samples存放在samples目录下

# github
git clone https://github.com/liuhll/lms.git

# gitee
git clone https://gitee.com/liuhll2/lms.git

必要的前提

  1. 服务注册中心zookeeper
  2. 缓存服务redis
  3. mysql数据库

如果您电脑已经安装了以及命令,那么您只需要进入samples\docker-compose\infrastr目录下,打开命令行工作,执行如下命令就可以自动安装zookeeperredismysql等服务:

docker-compose -f .\docker-compose.mysql.yml -f .\docker-compose.redis.yml -f .\docker-compose.zookeeper.yml up -d

数据库迁移

需要分别进入到各个微服务模块下的entityframeworkcore项目(例如:),执行如下命令:

dotnet ef database update

例如: 需要迁移account模块的数据库如下所示:

通过lms.samples熟悉lms微服务框架的使用详解

order模块和stock模块与account模块一致,在服务运行前都需要通过数据库迁移命令生成相关数据库。

  1. 数据库迁移指定数据库连接地址默认指定的是appsettings.development.yml中配置的,您可以通过修改该配置文件中的connectionstrings.default配置项来指定自己的数据库服务地址。
  2. 如果没有dotnet ef命令,则需要通过dotnet tool install --global dotnet-ef安装ef工具,请[参考] ()

以项目的方式启动和调试

使用visual studio作为开发工具

进入到samples目录下,使用visual studio打开lms.samples.sln解决方案,将项目设置为多启动项目,并将网关和各个模块的微服务主机设置为启动项目,如下图:

通过lms.samples熟悉lms微服务框架的使用详解

设置完成后直接启动即可。

使用rider作为开发工具进入到samples目录下,使用rider打开lms.samples.sln解决方案,打开各个微服务模块下的properties/launchsettings.json,点击图中绿色的箭头即可启动项目。

通过lms.samples熟悉lms微服务框架的使用详解

启动网关项目后,可以看到应用接口的服务条目生成的swagger api文档 。

通过lms.samples熟悉lms微服务框架的使用详解

默认的环境变量为: development,如果需要修改环境变量的话,可以通过properties/launchsettings.json下的environmentvariables节点修改相关环境变量,请参考在 asp.net core 中使用多个环境

数据库连接、服务注册中心地址、以及redis缓存地址和分布式锁连接等配置项可以通过修改appsettings.development.yml配置项自定义指定。

以docker-compose的方式启动和调试

进入到samples目录下,使用visual studio打开lms.samples.dockercompose.sln解决方案,将docker-compose设置为启动项目,即可启动和调式。

应用启动成功后,打开: ,即可看到swagger api文档

通过lms.samples熟悉lms微服务框架的使用详解

以docker-compose的方式启动和调试,则指定的环境变量为:containerdev

数据库连接、服务注册中心地址、以及redis缓存地址和分布式锁连接等配置项可以通过修改appsettings.containerdev.yml配置项自定义指定,配置的服务连接地址不允许为: 127.0.0.1或是localhost

测试和调式

服务启动成功后,您可以通过写入/api/account-post接口和/api/product-post新增账号和产品,然后通过/api/order-post接口进行测试和调式。

开源地址

github:

gitee:

到此这篇关于通过lms.samples熟悉lms微服务框架的使用的文章就介绍到这了,更多相关lms微服务框架内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!